El metacarácter RegExp \B en JavaScript se usa para encontrar una coincidencia que no está presente al principio o al final de una palabra. Si se encuentra una coincidencia, devuelve la palabra; de lo contrario, devuelve NULL.
Sintaxis:
/\B/
o
new RegExp("\\B")
Sintaxis con modificadores:
/\B/g
o
new RegExp("\\B", "g")
Ejemplo 1: este ejemplo coincide con la palabra «para» que no está presente al principio o al final de la palabra.
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \B Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \B 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 = /\Bfor/gi; var match4 = str1.match(regex4); document.getElementById("app").innerHTML = "Found " + match4.length + " match: " + 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 coincide con la palabra «Geeky» y la reemplaza con «GEEKY».
<!DOCTYPE html> <html> <head> <title> JavaScript RegExp \B Metacharacter </title> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2>RegExp \B Metacharacter</h2> <p>String: 123geeky456</p> <button onclick="geek()"> Click it! </button> <p id="app"></p> <script> function geek() { var str1 = "123geeky456"; var regex4 = new RegExp("\\Bgeeky", "gi"); var replace = "GEEKY"; 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 \B 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