JavaScript | RegExp \\uxxxx Metacarácter

El metacarácter RegExp \uxxxx en JavaScript se usa para encontrar el carácter Unicode especificado por un número hexadecimal xxxx. Si se encuentra una coincidencia, devuelve la palabra; de lo contrario, devuelve NULL.

Sintaxis:

/\uxxxx/ 

o

new RegExp("\\uxxxx")

Sintaxis con modificadores:

/\uxxxx/g 

o

new RegExp("\\uxxxx", "g")

Ejemplo 1: Este ejemplo coincide con la palabra correspondiente al número hexadecimal 0047, es decir, G en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp \uxxxx Metacharacter
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp \uxxxx Metacharacter</h2>
      
    <p>Input String: GeeksforGeeks@_123_$</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "GeeksforGeeks@_123_$";
            var regex4 = /\u0047/gi;
            var match4 = str1.match(regex4);
  
            document.getElementById("app").innerHTML
                    = "Found " + match4.length
                    + " match: " + match4;
        }
    </script>
</body>
  
</html>                    

Salida:
Antes de hacer clic en el botón:
hexadecimal
Después de hacer clic en el botón:
hexax

Ejemplo 2: Este ejemplo coincide con el número hexadecimal (0067) que corresponde a «g» y lo reemplaza con «G».

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp \uxxxx Metacharacter
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp \uxxxx Metacharacter</h2>
      
    <p>String: geeky@128</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "geeky@128";
            var regex4 = new RegExp("\\u0067", "gi");         
            var replace = "G";
            var match4 = str1.replace(regex4, replace);
            document.getElementById("app").innerHTML = 
                    " New string: " + match4;
        }
    </script>
</body>
  
</html>                    

Salida:
Antes de hacer clic en el botón:
hexax
Después de hacer clic en el botón:
hexax

Navegadores compatibles: los navegadores compatibles con RegExp \uxxxx Metacharacter se enumeran a continuación:

  • Google Chrome
  • safari de manzana
  • Mozilla Firefox
  • Ópera
  • explorador de Internet

Publicación traducida automáticamente

Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *