凯发k8官方网
收集整理的这篇文章主要介绍了
c# 正则表达式验证
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
一下为一些基本验证,网上有很多过时的,或者没写完整的,更新一下,刚在项目中使用的
/// /// 电话号码/// /// /// public static bool istelephone(
string str_telephone){return system.text.regularexpressions.regex.ismatch(str_telephone,
@"^(\d{3,4}-)?\d{6,8}$");}//
/// ///验证手机号码的主要代码如下: /// /// /// public static bool ismobliephone(
string str_handset){return system.text.regularexpressions.regex.ismatch(str_handset,
@"^[1] [3-8] \d{9}$");}/// /// 验证身份证号的主要代码如下:/// /// /// public static bool isidcard(
string str_idcard){return system.text.regularexpressions.regex.ismatch(str_idcard,
@"(^\d{18}$)|(^\d{15}$)");}/// /// 验证输入为数字的主要代码如下:/// /// /// public static bool isnumber(
string str_number){return system.text.regularexpressions.regex.ismatch(str_number,
@"^[0-9]*$");}/// /// 验证邮编的主要代码如下:/// /// /// public static bool ispostalcode(
string str_postalcode){return system.text.regularexpressions.regex.ismatch(str_postalcode,
@"^\d{6}$");}/// /// 验证邮箱/// /// /// public static bool isemail(
string str_email){return system.text.regularexpressions.regex.ismatch(str_email,
"^\\s*([a-za-z0-9_-] (\\.\\w )*@(\\w \\.) \\w{2,5})\\s*$");}
转载于:https://www.cnblogs.com/plifecopydown/archive/2013/02/01/2888967.html
总结
以上是凯发k8官方网为你收集整理的c# 正则表达式验证的全部内容,希望文章能够帮你解决所遇到的问题。
如果觉得凯发k8官方网网站内容还不错,欢迎将凯发k8官方网推荐给好友。