Dado un elemento de entrada, la tarea es verificar si el elemento de entrada es alfanumérico o no. Hay dos métodos para resolver este problema que se discuten a continuación:
Enfoque 1:
- Se utiliza un RegExp para validar la entrada.
- RegExp se usa para verificar la string de caracteres no válidos que no contiene (az) alfabetos y todos los dígitos numéricos para validar.
- Se utiliza un operador not para la salida deseada.
Ejemplo 1: Este ejemplo implementa el enfoque anterior.
<!DOCTYPE HTML> <html> <head> <title> How to validate an input is alphanumeric or not using JavaScript? </title> </head> <body align = "center"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <form id = "formElement"> Input: <input id = "input1" type = "text" /> </form> <br> <button onclick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "font-size: 24px; font-weight: bold; color:green;"> </p> <script> var el_up = document.getElementById('GFG_UP'); var el_down = document.getElementById('GFG_DOWN'); var input = document.getElementById('input1'); el_up.innerHTML = "Click on the button to " + "validate alphanumeric input."; function GFG_Fun() { var val = input.value; var RegEx = /[^a-z\d]/i; var Valid = !(RegEx.test(val)); el_down.innerHTML = Valid; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Enfoque 2:
- Se utiliza una RegExp diferente para validar la entrada.
- RegExp está comprobando los alfabetos (az) y los dígitos (0-9) para validar.
Ejemplo 2: Este ejemplo implementa el enfoque anterior.
<!DOCTYPE HTML> <html> <head> <title> JavaScript | Validate If input is alphanumeric or not? </title> </head> <body id = "body" align = "center"> <h1 style = "color:green;" > GeeksForGeeks </h1> <p id = "GFG_UP" style = "font-size: 15px; font-weight: bold;"> </p> <form id = "formElement"> Input: <input id = "input1" type = "text" /> </form> <br> <button onclick = "GFG_Fun()"> click here </button> <p id = "GFG_DOWN" style = "font-size: 24px; font-weight: bold; color:green;"> </p> <script> var el_up = document.getElementById('GFG_UP'); var el_down = document.getElementById('GFG_DOWN'); var input = document.getElementById('input1'); el_up.innerHTML = "Click on the button to " + "validate alphanumeric input."; function GFG_Fun() { var val = input.value; var RegEx = /^[a-z0-9]+$/i; var Valid = RegEx.test(val); el_down.innerHTML = Valid; } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA