JavaScript | RegExp [^0-9] Expresión

La expresión RegExp [^0-9] en JavaScript se usa para buscar cualquier dígito que no esté entre corchetes. El carácter dentro de los corchetes puede ser un solo dígito o un lapso de dígitos.

Sintaxis:

/[^0-9]/ 

o

new RegExp("[^0-9]")

Sintaxis con modificadores:

/[^0-9]/g 

o

new RegExp("[^0-9]", "g")

Ejemplo 1: Este ejemplo busca los dígitos que no están presentes entre [0-4] en toda la string.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp [^0-9] Expression
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp [^0-9] Expression</h2>
      
    <p>Input String: 1234567890</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
            var str1 = "123456790";
            var regex4 = /[^0-4]/g;
            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:
notdigit
Después de hacer clic en el botón:
notdigit

Ejemplo 2: Este ejemplo busca los dígitos que no están presentes entre [0-9] en toda la string y reemplaza los caracteres con hash (#).

<!DOCTYPE html>
<html>
  
<head>
    <title>
        JavaScript RegExp [^0-9] Expression
    </title>
</head>
  
<body style="text-align:center">
      
    <h1 style="color:green">
        GeeksforGeeks
    </h1>
      
    <h2>RegExp [^0-9] Expression</h2>
      
    <p>Input String: 128@$%</p>
      
    <button onclick="geek()">
        Click it!
    </button>
      
    <p id="app"></p>
      
    <script>
        function geek() {
           var str1 = "128@$%";            
           var replacement = "#";
            var regex4 = new RegExp("[^0-9]", "g");
            var match4 = str1.replace(regex4, replacement);
   
            document.getElementById("app").innerHTML =
                    "Found " + match4.length 
                    + " matches: " +  match4;
        }
    </script>
</body>
  
</html>

Salida:
Antes de hacer clic en el botón:
notdigit
Después de hacer clic en el botón:
notdigit

Navegadores compatibles: los navegadores compatibles con RegExp [^0-9] 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 *