El metacarácter RegExp \D en JavaScript se utiliza para buscar caracteres que no sean dígitos, es decir, todos los caracteres excepto los dígitos. Es lo mismo que [^0-9].
Sintaxis:
/\D/
o
new RegExp("\\D")
Sintaxis con modificadores:
/\D/g
o
new RegExp("\\D", "g")
Ejemplo 1: este ejemplo busca los caracteres que no son dígitos en toda la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \D Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \D 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 = /\D/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 que no son dígitos en la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \D Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \D Metacharacter</h2> <p>Input 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("\\D", "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 \D 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