c# 常用的正则表达式

1.验证手机号码的方法:

public static bool IsHandset(string str_handset)
{
  return System.Text.RegularExpressions.Regex.IsMatch(str_handset, @"^1[3456789]\d{9}$");
}

2.验证身份证号的方法:

public bool IsIDcard(string str_idcard)

{

return System.Text.RegularExpressions.Regex.IsMatch(str_idcard,@"(^\d{18}$)|(^\d{15}$)");

}

3.验证邮编的方法

public bool IsPostalcode(string str_postalcode)

{

  return System.Text.RegularExpressions.Regex.IsMatch(str_postalcode, @"^\d{6}$");

}

public bool IsEmail(string str_Email)

{

  return System.Text.RegularExpressions.Regex.IsMatch(str_Email, @"\\w{1,}@\\w{1,}\\.\\w{1,}");

}

4.验证输入为数字的方法

public bool IsNumber(string str_number)

{

  return System.Text.RegularExpressions.Regex.IsMatch(str_number, @"^[0-9]*$");

}




上一篇:已知一段英文句子,查找里面由三个字母构成的单词


下一篇:idea快捷键