El modificador RegExp m en JavaScript se usa para realizar coincidencias de varias líneas. Toma los caracteres de inicio y final (^ y $) como si funcionaran cuando se toman varias líneas. Coincide con el principio o el final de cada línea. Es sensible a mayúsculas y minúsculas.
Sintaxis:
/regexp/m
o
new RegExp("regexp", "m")
Ejemplo 1: este ejemplo busca la palabra «geeksforgeeks» al comienzo de cada línea en una string.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp m Modifier </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp m Modifier</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 = /^geeksforgeeks/gm; 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 la palabra «geeksforgeeks» al comienzo de cada línea en una string y la reemplaza con «GEEKSFORGEEKS».
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp m Modifier </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp m Modifier</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 = new RegExp("^geeksforgeeks", "m"); var replace = "GEEKSFORGEEKS"; 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 m Modifier 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