JavaScript | RegExp [abc] Expresión

La expresión RegExp [abc] en JavaScript se usa para buscar cualquier carácter entre corchetes. El carácter dentro de los corchetes puede ser un solo carácter o un intervalo de caracteres.

  • [AZ]: se utiliza para hacer coincidir cualquier carácter de la A a la Z mayúscula.
  • [az]: se utiliza para hacer coincidir cualquier carácter de la a a la z minúscula.
  • [Az]: se utiliza para hacer coincidir cualquier carácter desde la A mayúscula hasta la z minúscula.
  • [abc…]: se utiliza para hacer coincidir cualquier carácter entre corchetes.

Sintaxis:

/[abc]/ 

o

new RegExp("[abc]")

Sintaxis con modificadores:

/\[abc]/g 

o

new RegExp("[abc]", "g")

Ejemplo 1: Este ejemplo busca los caracteres entre [AG], es decir, de la A mayúscula a la G mayúscula en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp [abc] Expression
    </title>    
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp [abc] Expression</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 = /[A-G]/g;
            var match4 = str1.match(regex4);
  
            document.getElementById("app").innerHTML = 
                        "Found " + match4.length 
                        + " matches: " + match4;
        }
    </script>
</body>
  
</html>                    

Producción:

  • Antes de hacer clic en el botón:
    abc
  • Después de hacer clic en el botón:
    abc

Ejemplo 2: Este ejemplo busca los caracteres entre [ag], es decir, de la a minúscula a la g minúscula en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp [abc] Expression
    </title>    
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp [abc] Expression</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 = /[a-g]/g;
            var match4 = str1.match(regex4);
  
            document.getElementById("app").innerHTML = 
                        "Found " + match4.length
                        + " matches: " + match4;
        }
    </script>
</body>
  
</html>                    

Producción:

  • Antes de hacer clic en el botón:
    abc
  • Después de hacer clic en el botón:
    abc

Navegadores compatibles: los navegadores compatibles con RegExp [abc] Expression 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 *