public static Boolean isValidEmail(String strEmail)
{
bool b = Regex.IsMatch(strEmail,@"^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z\\u4e00-\u9fa5\\s]{2,4}|[0-9]{1,3})(\]?)$");
return b;
}
以上是我用于验证电子邮件的代码。
我无法为此Nitha.La.Poojari@abc.com找到正则表达式,因为它包含三个句号。 任何人都可以帮我使用正则表达式吗?