脚踏祥云

导航

邮箱验证方法

public static bool IsEmailFormat(
this string item)
{

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

return Regex.IsMatch(item, pattern);

}

posted on 2018-09-04 11:51  脚踏祥云  阅读(245)  评论(0编辑  收藏  举报