Skip to content

Instantly share code, notes, and snippets.

@Ayubur
Last active February 9, 2023 15:20
Show Gist options
  • Save Ayubur/b58e4d2d7b83e7ef3f696b27c4651e5c to your computer and use it in GitHub Desktop.
Save Ayubur/b58e4d2d7b83e7ef3f696b27c4651e5c to your computer and use it in GitHub Desktop.
Javascript mobile number validation RegExp example
//RegExp of mobile number validtion
let countryCode = '880'; //mobile country code
let numberLength=10; //length of mobile number
let mobilePattern = `^((\\+${countryCode}-?)|0)?[0-9]{${numberLength.toString()}}$`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment