La expresión RegExp [^abc] en JavaScript se usa para buscar cualquier carácter que no esté entre corchetes. El carácter dentro de los corchetes puede ser un solo carácter o un intervalo de caracteres.
- [AZ]: se utiliza para hacer coincidir cualquier carácter desde la A mayúscula hasta la Z mayúscula.
- [az]: se utiliza para hacer coincidir cualquier carácter desde la minúscula a hasta la minúscula z.
- [Az]: se utiliza para hacer coincidir cualquier carácter desde la A mayúscula hasta la z minúscula.
- [abc…]: se utiliza para hacer coincidir cualquier carácter entre corchetes.
Sintaxis:
/[^abc]/
o
new RegExp("[^abc]")
Sintaxis con modificadores:
/\[^abc]/g
o
new RegExp("[^abc]", "g")
Ejemplo 1: Este ejemplo busca los caracteres que no están presentes entre [AG], es decir, de la A mayúscula a la G mayúscula en toda la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp [^abc] Expression </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp [^abc] Expression</h2> <p> GEEKSFORGEEKS is the computer science portal for geeks. </p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "GEEKSFORGEEKS is the computer " + "science portal for geeks."; var regex4 = /[^A-Z]/g; var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " matches: " + match4; } </script> </body> </html>
Producción:
- 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 están presentes entre [ag], es decir, de la a minúscula a la g minúscula en toda la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp [^abc] Expression </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp [^abc] Expression</h2> <p> GEEKSFORGEEKS is the computer science portal for geeks. </p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "GEEKSFORGEEKS is the computer " + "science portal for geeks."; var regex4 = /[^a-p]/g; var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " matches: " + match4; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Navegadores compatibles: los navegadores compatibles con RegExp [^abc] Expression 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