JavaScript | Modificador RegExp i

El modificador RegExp i en JavaScript se usa para realizar coincidencias que no distinguen entre mayúsculas y minúsculas en la string.

Sintaxis:

/regexp/i 

o

new RegExp("regexp", "i")

Ejemplo 1: este ejemplo coincide con la palabra «geeks» o «Geeks» (sin distinción entre mayúsculas y minúsculas) y lo muestra.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp i Modifier
    </title>
</head>
  
<body style="text-align:center">
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp i 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 = /geek/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:
i
Después de hacer clic en el botón:
i

Ejemplo 2: Este ejemplo coincide con la palabra «geeks» o «Geeks» (sin distinción entre mayúsculas y minúsculas) y la reemplaza con «GEEKS».

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp i Modifier
    </title>
</head>
  
<body style="text-align:center">
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp i Modifier</h2>
      
    <p>
        String: 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("geeks", "ig");         
            var replace = "GEEKS";
            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:
i
Después de hacer clic en el botón:
i

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

Deja una respuesta

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