/// 检测是不是中国电话,格式010-00000000 public static bool IsTel ( string source ) { return Regex.IsMatch ( source, @"^\d{3,4}-?\d{6,8}$", RegexOptions.IgnoreCase ); }