码迷,mamicode.com
首页 > 其他好文 > 详细

邮箱验证方法

时间:2018-09-04 13:33:24      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:ret   sem   bool   str   邮箱验证   turn   static   this   for   

public static bool IsEmailFormat(
this string item)
{

var pattern = @"^(\w)+(\.\w+)*(\-\w+)*@(\w)+((\.\w+)+)$";

return Regex.IsMatch(item, pattern);

}

邮箱验证方法

标签:ret   sem   bool   str   邮箱验证   turn   static   this   for   

原文地址:https://www.cnblogs.com/piaoyun/p/9583588.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!