Page 1 of 1

How to validate the phone number ?

Posted: Thu Nov 24, 2011 7:23 am
by premecorp
Hi,
I want to validate the phone number(landline or mobile) using a regular expression.
Phone number should be global (like used all over the world).
It may contain special characters(Optional) like "hypen"(-), or "Paranthesis"().
Ex: 086-104-2222
or (086)-104-2222
or 0861042222 (US)

or 9999999999 (Mobile)

or 08026693647 (India)

Can i get these done in a single expression
If anyone have any idea regarding this please help me...

Re: How to validate the phone number ?

Posted: Thu Nov 24, 2011 7:42 am
by mikeashfield
RegEx should do the trick just nicely:

Code: Select all

^\(?([0-9]{3})\)?[-. ]?([0-9]{3})[-. ]?([0-9]{4})$