Possible Duplicate:
A comprehensive regex for phone number validation
My scenario:
i want to expect regular expression for following number
+(91)-(44)-96217000
+(91)-44-96217000
i try this expression is not working
static bool IsPhone(string s)
{
return Regex.IsMatch(s, @"\(?\d{2}\)?[\s\-]?\d{3}\-?\d{10}");
}