La expresión regular. El metacarácter en JavaScript se usa para buscar un solo carácter, excepto el terminador de línea o la nueva línea.
Sintaxis:
/regexp./
o
new RegExp("regexp.")
Sintaxis con modificadores:
/regexp./g
o
new RegExp("regexp.", "g")
Ejemplo 1: este ejemplo busca las palabras cuyo carácter inicial es «A» y el carácter final es «C» con solo un carácter entre ellos.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp . Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp . Metacharacter</h2> <p> Input String: ABC, A3C, A C, AXXCC! </p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "ABC, A3C, A C, AXXCC!"; var regex4 = /A.C/g; var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " matches: " + 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 busca las palabras que tienen «a» como letra inicial y «c» como letra final con un solo carácter en medio.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp . Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp . Metacharacter</h2> <p> Input String: ABC, A3X, a x, AXXCC! </p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "ABC, A3X, a x, AXXCC!"; var regex4 = new RegExp("a.x", "g"); var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " matches: " + 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. Los metacaracteres 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