


How to verify if input is alphanumeric or non-alphanumeric using JavaScript?
Our task is to validate the input string and we need to check if it is alphanumeric using JavaScript. Alphanumeric strings contain only numeric and alphabetic characters, including uppercase or lowercase characters, and not even any special characters or spaces.
Below, we will see two methods of validating input strings.
Use charCodeAt() method
We can use the charCodeAT() method to get the ASCII value of any character. Here, we will iterate through each character of the string and check the ASCII value of each character. ASCII codes between 48 and 57 represent numeric characters, 97 and 122 represent lowercase alphabetic characters, and 65 and 90 represent uppercase alphabetic characters.
So if we find any character whose ASCII value is not between the ASCII range given above, we can say that the string is not alphanumeric.
grammar
Users can use the charCodeAT() method according to the following syntax to check whether the input string is alphanumeric.
let charCode = char.charCodeAt(0); if (!(charCode > 47 && charCode < 58) && !(charCode > 96 && charCode < 123) && !(charCode > 64 && charCode < 91) ) { // string is not alphanumeric return; }
In the above syntax, char is a single character. We use the charCodeAT() method to get the ASCII value of a single character. After that, we use an if-else statement to check if the ASCII code of the character is between the ASCII values of the numeric and alphabetic characters.
Example 1
In the example below, we create two input strings containing various characters. Additionally, we define the validateString() function. In the validateString() function, we use a for-of loop to iterate over each string character. Additionally, we use the charCodeAt() method to get the ASCII value of a character by passing 0 as argument.
We then check if there is a character whose ASCII code is not between the ASCII range for numeric and alphabetic characters; we can say that the string is not alphanumeric.
<html> <body> <h3>Using the <i> for loop and charCodeAT() method </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <script> var output = document.getElementById('output'); let str1 = "aredsUADFSKH121342kjbrewdfv"; let str2 = "dfdrg rflrtke 435 3df;fd'gfdg"; function validateString(string) { for (let char of string) { let charCode = char.charCodeAt(0); if (!(charCode > 47 && charCode < 58) && !(charCode > 96 && charCode < 123) && !(charCode > 64 && charCode < 91) ) { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; return; } } output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } validateString(str1); validateString(str2); </script> </body> </html>
Use regular expressions
We can create regular expressions using the RegExp() constructor with the new keyword. It is a pattern where we can match an input string against a regular expression pattern and return a true or false boolean based on this.
grammar
Users can use regular expressions to validate alphanumeric strings according to the following syntax.
let strRegex = new RegExp(/^[a-z0-9]+$/i); let result = strRegex.test(string);
In the above syntax, the result variable contains a boolean value based on whether the string is alphanumeric.
Regular expression explanation
^ - Indicates the beginning of the string.
[a-z0-9] - Represents only characters from a to z or 0 to 9.
$ - Indicates the end of the string.
i – This is the flag for regular expressions used for case-insensitive string comparisons.
Example 2
In the following example, we call the validateString() function by passing various strings as parameters. In the function we create the normal interpretation as above. After that, we use the test() method by passing the regular expression as a reference and passing the input string as the validation parameter.
If the test() method returns true, the input string is alphanumeric and contains only numeric and alphabetic characters; otherwise, the string is not alphanumeric.
<html> <body> <h3>Using the <i> Regular expression </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <script> var output = document.getElementById('output'); let str1 = "Welcome to the tutorialsPoint"; let str2 = "Hello123"; function validateString(string) { // Defining the regular expression let strRegex = new RegExp(/^[a-z0-9]+$/i); // match the regex with the string let result = strRegex.test(string); if (result) { output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } else { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; } } validateString(str1); validateString(str2); </script> </body> </html>
Example 3
In the following example, we use the Prompt () method to get a string from the user. After that, we use a regular expression to validate the string, just like we used in the above example, but here we use a different regular expression.
Here, [^a-zA-Z0-9] represents any character that is not between a to z, A to Z, and 0 to 9. Therefore, the test() method returns true if the string is not alphanumeric and false for alphanumeric strings.
<html> <body> <h3>Using the <i> Regular expression </i> to check if input string is alphanumeric or not</h3> <div id = "output"> </div> <button onClick = "getInputAndValidate()"> Validate random string </button> <script> var output = document.getElementById('output'); function getInputAndValidate() { let string = prompt("Enter a string to validate", "1232dwe"); let strRegex = new RegExp(/[^a-zA-Z0-9]/); // match the regex with the string let result = strRegex.test(string); if (!result) { output.innerHTML += "The string " + string + " is an alphanumeric! </br>"; } else { output.innerHTML += "The string " + string + " is not alphanumeric! </br>"; } } </script> </body> </html>
We learned about validating alphanumeric strings in this tutorial. We use two different regular expressions to validate alphanumeric strings. Also, we have learned a simple way using for loop and charCodeAT() method, but it is not time efficient and is not recommended.
The above is the detailed content of How to verify if input is alphanumeric or non-alphanumeric using JavaScript?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Simple JavaScript functions are used to check if a date is valid. function isValidDate(s) { var bits = s.split('/'); var d = new Date(bits[2] '/' bits[1] '/' bits[0]); return !!(d && (d.getMonth() 1) == bits[1] && d.getDate() == Number(bits[0])); } //test var

This article discusses how to use jQuery to obtain and set the inner margin and margin values of DOM elements, especially the specific locations of the outer margin and inner margins of the element. While it is possible to set the inner and outer margins of an element using CSS, getting accurate values can be tricky. // set up $("div.header").css("margin","10px"); $("div.header").css("padding","10px"); You might think this code is

This article explores ten exceptional jQuery tabs and accordions. The key difference between tabs and accordions lies in how their content panels are displayed and hidden. Let's delve into these ten examples. Related articles: 10 jQuery Tab Plugins

Discover ten exceptional jQuery plugins to elevate your website's dynamism and visual appeal! This curated collection offers diverse functionalities, from image animation to interactive galleries. Let's explore these powerful tools: Related Posts: 1

http-console is a Node module that gives you a command-line interface for executing HTTP commands. It’s great for debugging and seeing exactly what is going on with your HTTP requests, regardless of whether they’re made against a web server, web serv

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

The following jQuery code snippet can be used to add scrollbars when the div content exceeds the container element area. (No demonstration, please copy it directly to Firebug) //D = document //W = window //$ = jQuery var contentArea = $(this), wintop = contentArea.scrollTop(), docheight = $(D).height(), winheight = $(W).height(), divheight = $('#c
