JavaScript | Expresión RegExp (x|y)

La expresión RegExp (x|y) en JavaScript se usa para buscar cualquiera de los caracteres especificados (separados por |).

Sintaxis:

/(x|y)/ 

o

new RegExp("(x|y)")

Sintaxis con modificadores:

/(x|y)/g 

o

new RegExp("(x|y)", "g")

Ejemplo 1: este ejemplo busca la palabra «GEEKS» o «portal» en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp (x|y) Expression
    </title>    
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp (x|y) 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 = /(GEEKS|portal)/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:
    xory
  • Después de hacer clic en el botón:
    xory

Ejemplo 2: Este ejemplo busca el dígito numerado 0 o 5 en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp (x|y) Expression
    </title>    
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp (x|y) Expression</h2>
      
    <p>Input String: 012034567895.</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
           var str1 = "012034567895";
            var regex4 = /(0|5)/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:
    xory
  • Después de hacer clic en el botón:
    xory

Navegadores compatibles: los navegadores compatibles con RegExp (x|y) 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 *