JavaScript | Cuantificador RegExp $

El cuantificador RegExp m$ en JavaScript se usa para encontrar la coincidencia de cualquier string que contenga m al final.

Sintaxis:

/m$/ 

o

new RegExp("m$")

Sintaxis con modificadores:

/\m$/g 

o

new RegExp("m$", "g")

Ejemplo 1: este ejemplo coincide con la presencia de la palabra ‘123’ al final de la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp $ Quantifier
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">GeeksforGeeks</h1>
      
    <h2>RegExp $ Quantifier</h2>
      
    <p>Input String: Geeksfor123\nGeeks@_123</p>
      
    <button onclick="geek()">Click it!</button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
           var str1 = "Geeksfor123\nGeeks@_123";
            var regex4 = /123$/gim;
            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:
dólar
Después de hacer clic en el botón:
dollar

Ejemplo 2: Este ejemplo reemplaza la palabra ‘K’ con ‘@’.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp $ Quantifier
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">GeeksforGeeks</h1>
      
    <h2>RegExp $ Quantifier</h2>
      
    <p>String: @128GeeeeK</p>
      
    <button onclick="geek()">Click it!</button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "@128GeeeeK";
            var regex4 = new RegExp("K$", "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:
dollar
Después de hacer clic en el botón:
dollar

Navegadores compatibles: los navegadores compatibles con RegExp $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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *