El cuantificador RegExp m{X, Y} en JavaScript se usa para encontrar la coincidencia de cualquier string que contenga una secuencia de m, X a Y veces donde X, Y debe estar numerado.
Sintaxis:
/m{X, Y}/
o
new RegExp("m{X, Y}")
Sintaxis con modificadores:
/\m{X, Y}/g
o
new RegExp("m{X}", "g")
Ejemplo 1: este ejemplo coincide con la presencia de la palabra entre [ag] de longitud 3 a 4 en toda la string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp {X,Y} Quantifier </title> </head> <body style="text-align:center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>RegExp {X,Y} Quantifier</h2> <p>Input String: GeeksforGeeeeks@_123_$</p> <button onclick="geek()">Click it!</button> <p id="app"></p> <script> function geek() { var str1 = "GeeksforGeeeeks@_123_$"; var regex4 = /[a-g]{3,4}/gi; 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 reemplaza la palabra ‘ee’ o ‘eee’ con ‘$’.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp {X,Y} Quantifier </title> </head> <body style="text-align:center"> <h1 style="color:green">GeeksforGeeks</h1> <h2>RegExp {X,Y} Quantifier</h2> <p>String: ee@128GeeeeK</p> <button onclick="geek()">Click it!</button> <p id="app"></p> <script> function geek() { var str1 = "ee@128GeeeeK"; var regex4 = new RegExp("e{2,3}", "gi"); var replace = "$"; 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 {X, Y} Quantifier 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