/// 邮政编码 6个数字 public static bool IsPostCode ( string source ) { return Regex.IsMatch ( source, @"^\d{6}$", RegexOptions.IgnoreCase ); }