El metacarácter RegExp \xxx en JavaScript se usa para encontrar el carácter especificado por un número octal xxx. Si se encuentra la coincidencia, devuelve el carácter; de lo contrario, devuelve NULL.
Sintaxis:
/\xxx/
o
new RegExp("\\xxx")
Sintaxis con modificadores:
/\xxx/g
o
new RegExp("\\xxx", "g")
Ejemplo 1: Este ejemplo devuelve el carácter correspondiente al número octal 107, es decir, G en toda la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \xxx Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \xxx 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 = /\107/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:
Después de hacer clic en el botón:
Ejemplo 2: Este ejemplo coincide con el número octal (147) que corresponde a «g» y lo reemplaza con «G».
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \xxx Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \xxx 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("\\147", "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:
Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con RegExp \xxx 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