tags:

views:

45

answers:

2

Possible Duplicate:
A comprehensive regex for phone number validation

Just a simple regex required to validate telephone numbers.

Must contain only digits, and the other allowable characters are spaces and dashes.

A: 

You can use this

\+?[\d -\(\)]*
Hemang
+2  A: 

You can try:

if(preg_match('/^[\d -]+$/',$telNumber)) {
  // valid tel number.
}
codaddict