El metacarácter RegExp \w en JavaScript se usa para encontrar la palabra carácter, es decir, caracteres de la a a la z, de la A a la Z, del 0 al 9. Es lo mismo que [a-zA-Z_0-9].
Sintaxis:
/\w/
o
new RegExp("\\w")
Sintaxis con modificadores:
/\w/g
o
new RegExp("\\w", "g")
Ejemplo 1: Este ejemplo busca los caracteres en minúsculas, mayúsculas y guiones bajos.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \w Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \w 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 = /\w/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 los caracteres en minúsculas, mayúsculas y guiones bajos y los reemplaza con hash (#).
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \w Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \w Metacharacter</h2> <p>Input String: 128@$%</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "128@$%"; var replacement = "#"; var regex4 = new RegExp("\\w", "g"); var match4 = str1.replace(regex4, replacement); 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 \w 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