首先在CS文件顶部引入:
using System.Text.RegularExpressions;
以下为代码说明
一、验证函数
private static bool IsEmail(string Str)
{
string strRegex = @"^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.){1,4}[a-z]{2,3}$";
Regex re = new Regex(strRegex);
if (re.IsMatch(Str))
{
return true;
}
else
{
return false;
}
}
二、调用方法
if (IsEmail(“abcdef@126.com“))
{
ResponseWrite(“邮件格式正确“);
}
经过验证,正确无误!
以上代码运行环境为asp.net(c#)(最好是VS2005)