Possible Duplicate:
A comprehensive regex for phone number validation
What is the regular expression for only 13 digit phone number without the + symbol?
Number can be start from 0 to 9. Only numbers will be allowed. [No + symbol and . ]
Possible Duplicate:
A comprehensive regex for phone number validation
What is the regular expression for only 13 digit phone number without the + symbol?
Number can be start from 0 to 9. Only numbers will be allowed. [No + symbol and . ]
You can try this:-
@"^\d{13}$"
or
@"\d{13}"
\d
means match any digit
and
{13}
means 13 times