I want users to allow only phone numbers in following format
xxx-xxx-xxxx or xxxxxxxxxx all digits only . Can some one suggest a regular expression to do this ?
|
I want users to allow only phone numbers in following format xxx-xxx-xxxx or xxxxxxxxxx all digits only . Can some one suggest a regular expression to do this ? |
|||||||||||||||||||
|
|
While general phone number validation is a larger problem than what you're trying to solve, I'd do the following:
Doing it this way will validate all of the following forms:
Also, to trivially check for a valid U.S. area code, you can use:
Again, this is a trivial check. For something a little more rigorous, see this List of Legal US Area Codes. |
|||||
|
|
|||
|
|
|
The following regular expression can be used to validate defined and operational (as of 6/2011) telephone area codes within the U.S.:
|
|||
|
|
|
Not sure if this helps but PhoneFormat.com has a javascript library that can help you with formatting and validation. |
|||
|
|