固定电话有效性
2015-12-19 17:02:54 访问(1496) 赞(0) 踩(0)
-
/// <summary>
/// 固定电话有效性
/// </summary>
/// <param name="phone"></param>
/// <returns></returns>
public static bool IsValidPhone(string phone)
{
Regex rx = new Regex(@"^(\(\d{3,4}\)|\d{3,4}-)?\d{7,8}$", RegexOptions.None);
Match m = rx.Match(phone);
return m.Success;
}
标签:
固定电话有效性 


上一条:
下一条:
相关评论
发表评论