Created
August 21, 2013 07:49
-
-
Save carlosasin/6291468 to your computer and use it in GitHub Desktop.
JS - Check correct Phone using pattern
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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