Skip to content

Instantly share code, notes, and snippets.

@carlosasin
Created August 21, 2013 07:49
Show Gist options
  • Save carlosasin/6291468 to your computer and use it in GitHub Desktop.
Save carlosasin/6291468 to your computer and use it in GitHub Desktop.
JS - Check correct Phone using pattern
// Check if phone is correct (accept + - ( ) 123456789)
// @input str string to check
// @return bool
function check_phone(str) {
var phn = /^([+]*[0-9]*[-]*[(]*[)]*\s*)*$/;
if (str != undefined && str.match(phn)) return true;
else return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment