1

我有以下用于电子邮件 ID 验证的代码。我正在使用正则表达式来做到这一点。但是,以下电子邮件 ID 无效。

test_@gmail.com

正则表达式中应更改的内容,以便通过电子邮件 ID ( test_@gmail.com)

 public static bool IsValidEmail(string strIn)
        {
            invalid = false;
            if (String.IsNullOrEmpty(strIn))
                return false;

            // Use IdnMapping class to convert Unicode domain names. 
            try
            {

                strIn = Regex.Replace(strIn, @"(@)(.+)$", DomainMapper);

            }
            catch (Exception e)
            {
                Utility.writeToLogFile(String.Format("Error while validating the Email Address {0}. Error Code.e", strIn.ToString(), e));
                return false;
            }

            if (invalid)
                return false;

            // Return true if strIn is in valid e-mail format. 
            try
            {
                return Regex.IsMatch(strIn,
                      @"^(?("")(""[^""]+?""@)|(([0-9a-z]((\.(?!\.))|[-!#\$%&'\*\+/=\?\^`\{\}\|~\w])*)(?<=[0-9a-z])@))" +
                      @"(?(\[)(\[(\d{1,3}\.){3}\d{1,3}\])|(([0-9a-z][-\w]*[0-9a-z]*\.)+[a-z0-9]{2,17}))$",
                      RegexOptions.IgnoreCase);


            }
            catch (Exception e)
            {
                Utility.writeToLogFile(String.Format("Error while validating the Email Address {0}. Error Code.e", strIn.ToString(), e));
                return false;
            }
        }
4

1 回答 1

1

你的正则表达式失败了

test_@gmail.com

因为该部分(?<=[0-9a-z])@明确要求在“@”之前有一个字母或数字。

对于一个解决方案,我也建议这个答案,就像 Eduard Dumitru 在他的评论中一样。

于 2013-02-26T09:43:06.333 回答