How to validate phone number in javascript

Last update on August 19 2022 21:51:07 [UTC/GMT +8 hours]

Phone Number validation

The validating phone number is an important point while validating an HTML form. In this page we have discussed how to validate a phone number [in different format] using JavaScript :

At first, we validate a phone number of 10 digits with no comma, no spaces, no punctuation and there will be no + sign in front the number. Simply the validation will remove all non-digits and permit only phone numbers with 10 digits. Here is the function.

function phonenumber[inputtxt]
{
  var phoneno = /^\d{10}$/;
  if[[inputtxt.value.match[phoneno]]
        {
      return true;
        }
      else
        {
        alert["message"];
        return false;
        }
}

Flowchart:


To valid a phone number like
XXX-XXX-XXXX
XXX.XXX.XXXX
XXX XXX XXXX
use the following code.

function phonenumber[inputtxt]
{
  var phoneno = /^\[?[[0-9]{3}]\]?[-. ]?[[0-9]{3}][-. ]?[[0-9]{4}]$/;
  if[[inputtxt.value.match[phoneno]]
        {
      return true;
        }
      else
        {
        alert["message"];
        return false;
        }
}

Flowchart:


If you want to use a + sign before the number in the following way
+XX-XXXX-XXXX
+XX.XXXX.XXXX
+XX XXXX XXXX
use the following code.

  
function phonenumber[inputtxt]
{
  var phoneno = /^\+?[[0-9]{2}]\]?[-. ]?[[0-9]{4}][-. ]?[[0-9]{4}]$/;
  if[[inputtxt.value.match[phoneno]]
        {
      return true;
        }
      else
        {
        alert["message"];
        return false;
        }
}

Flowchart:


Following code blocks contain actual codes for the said validations. We have kept the CSS code part common for all the validations.

CSS Code

 li {list-style-type: none;
font-size: 16pt;
}
.mail {
margin: auto;
padding-top: 10px;
padding-bottom: 10px;
width: 400px;
background : #D8F1F8;
border: 1px soild silver;
}
.mail h2 {
margin-left: 38px;
}
input {
font-size: 20pt;
}
input:focus, textarea:focus{
background-color: lightyellow;
}
input submit {
font-size: 12pt;
}
.rq {
color: #FF0000;
font-size: 10pt;
}

Validate a 10 digit phone number

At first we validate a phone number of 10 digit. For example 1234567890, 0999990011, 8888855555 etc.

HTML Code





JavaScript form validation - checking non-empty
      

Input an Phone No.[xxxxxxxxxx] and Submit

  •  
  •  

JavaScript Code

function phonenumber[inputtxt]
{
  var phoneno = /^\d{10}$/;
  if[inputtxt.value.match[phoneno]]
  {
      return true;
  }
  else
  {
     alert["Not a valid Phone Number"];
     return false;
  }
  }

View the example in the browser

Flowchart:


Validate North American phone numbers

Now, let's see how to validate a phone number, either in 222-055-9034, 321.789.4512 or 123 256 4587 formats.

HTML Code



JavaScript form validation - checking non-empty

Input an Phone No.[xxx-xxx-xxxx, xxx.xxx.xxxx, xxx xxx xxxx] and Submit

  •  
  •  

JavaScript Code

function phonenumber[inputtxt]
{
  var phoneno = /^\[?[[0-9]{3}]\]?[-. ]?[[0-9]{3}][-. ]?[[0-9]{4}]$/;
  if[inputtxt.value.match[phoneno]]
     {
	   return true;      
	 }
   else
     {
	   alert["Not a valid Phone Number"];
	   return false;
     }
}

View the example in the browser

Flowchart:


Validate an international phone number with country code

Now, let's see how to validate a phone number with country code, either in +24-0455-9034, +21.3789.4512 or +23 1256 4587 format.

HTML Code



JavaScript form validation - checking non-empty

Input an Phone No.[+xx-xxxx-xxxx, +xx.xxxx.xxxx, +xx xxxx xxxx] and Submit

  •  
  •  

JavaScript Code

function phonenumber[inputtxt]
{
  var phoneno = /^\[?[[0-9]{3}]\]?[-. ]?[[0-9]{3}][-. ]?[[0-9]{4}]$/;
  if[inputtxt.value.match[phoneno]]
     {
	   return true;
	 }
   else
     {
	   alert["Not a valid Phone Number"];
	   return false;
     }
}

View the example in the browser

Flowchart:


file_download Download the validation code from here.

Other JavaScript Validation :

  • Checking for non-empty
  • Checking for all letters
  • Checking for all numbers
  • Checking for floating numbers
  • Checking for letters and numbers
  • Checking string length
  • Email Validation
  • Date Validation
  • A sample Registration Form
  • Phone No. Validation
  • Credit Card No. Validation
  • Password Validation
  • IP address Validation

Previous: JavaScript Field Level Form Validation using a registration form
Next: JavaScript: HTML Form - Credit Card Number validation

JavaScript: Tips of the Day

Pass an argument different way

const value = { number: 10 };

const multiply = [x = { ...value }] => {
  console.log[[x.number *= 2]];
};

multiply[];
multiply[];
multiply[value];
multiply[value];

In ES6, we can initialize parameters with a default value. The value of the parameter will be the default value, if no other value has been passed to the function, or if the value of the parameter is "undefined". In this case, we spread the properties of the value object into a new object, so x has the default value of { number: 10 }.
The default argument is evaluated at call time! Every time we call the function, a new object is created. We invoke the multiply function the first two times without passing a value: x has the default value of { number: 10 }. We then log the multiplied value of that number, which is 20.
The third time we invoke multiply, we do pass an argument: the object called value. The *= operator is actually shorthand for x.number = x.number * 2: we modify the value of x.number, and log the multiplied value 20.
The fourth time, we pass the value object again. x.number was previously modified to 20, so x.number *= 2 logs 40.

Ref: //bit.ly/323Y0P6

How do I validate a mobile number?

Mobile Number validation criteria: The first digit should contain numbers between 6 to 9. The rest 9 digit can contain any number between 0 to 9. The mobile number can have 11 digits also by including 0 at the starting. The mobile number can be of 12 digits also by including 91 at the starting.

How do I validate a phone number in HTML?

HTML Demo: .
Enter your phone number:.
.
Format: 123-456-7890.

How do I validate a phone number in react?

How to Validate a Phone Number Using react-phone-number-input.
Create a React app and install dependencies. ... .
Build the phone number input component. ... .
Render the component. ... .
Add the component logic. ... .
Add validation logic. ... .
Get an API Key. ... .
Rewrite the handleValidate function to use the API..

How do I validate a phone number in node JS?

validate-phone-number-node-js v0..
Introduction. Phone number check is a npm module for NodeJS, that checks if a phone number exists and valid. It validates the number through regex..
Install. npm i validate-phone-number-node-js..
Usage. validate[phoneNumber].

Chủ Đề