c# 常用的正则表达式
2020-12-22 23:27
标签:text 手机 tool 方法 pre toolbar 正则 输入 ons 1.验证手机号码的方法: public static bool IsHandset(string str_handset) 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]*$"); } c# 常用的正则表达式 标签:text 手机 tool 方法 pre toolbar 正则 输入 ons 原文地址:https://www.cnblogs.com/keke2/p/13602421.html
{
return System.Text.RegularExpressions.Regex.IsMatch(str_handset, @"^1[3456789]\d{9}$");
}