当前位置: 首页 > 工具软件 > isemail > 使用案例 >

C#验证Email

巫马令
2023-12-01

使用C#来验证一个字符串是否为合法的Email地址:

public static bool IsEmail(string email)
{
    String strExp = @"\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*";
    Regex r = new Regex(strExp);
    Match m = r.Match(email);
    return m.Success;
}


本文转自齐师傅博客园博客,原文链接:http://www.cnblogs.com/youring2/archive/2013/04/03/2997837.html,如需转载请自行联系原作者
 类似资料: