JavaScript | RegExp ? cuantificador

el m? El cuantificador en JavaScript se usa para encontrar la coincidencia de cualquier string que contenga cero o una ocurrencia de m.

Sintaxis:

/m?/ 

o

new RegExp("m?")

Sintaxis con modificadores:

/\m?/g 

o

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

Ejemplo 1: este ejemplo coincide con la palabra e seguida de cero o una aparición de k.

<!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: GeeksforGeeks@_123_$</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "GeeksforGeeks@_123_$";
            var regex4 = /ek?/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:
plus
Después de hacer clic en el botón:
plus

Ejemplo 2: este ejemplo reemplaza la palabra 1 seguida de cero o una ocurrencia de 2 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: Geeky#12$#1</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "Geeky#12$#1";
            var regex4 = new RegExp("#12?", "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:
plus
Después de hacer clic en el botón:
plus

Navegadores compatibles: ¿ Los navegadores compatibles con RegExp? cuantificador 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 *