正则表达式不验证域名

时间:2012-03-14 10:27:36

标签: c# regex asp.net-mvc

我有这个效用函数如下:

   public bool IsValidDomainName(string strIn)
        {
            return Regex.IsMatch(strIn, @"^([a-zA-Z0-9]+(\.[a-zA-Z0-9]+)+.*)$");
        }

此表达式使用MVC中的模型绑定验证:

[RegularExpression(@"^([a-zA-Z0-9]+(\.[a-zA-Z0-9]+)+.*)$", ErrorMessage = "Please enter valid website address")]

所以我的问题是为什么我的效用函数失败了?

更新

 public class RegexUtilities
    {
        bool invalid;

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

            // Use IdnMapping class to convert Unicode domain names.
            strIn = Regex.Replace(strIn, @"(@)(.+)$", DomainMapper);
            if (invalid)
                return false;

            // Return true if strIn is in valid e-mail format.
            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);
        }

        public bool IsValidDomainName(string strIn)
        {
            return Regex.IsMatch(strIn, @"^([a-zA-Z0-9]+(\.[a-zA-Z0-9]+)+.*)$");
        }

        private string DomainMapper(Match match)
        {
            // IdnMapping class with default property values.
            IdnMapping idn = new IdnMapping();

            string domainName = match.Groups[2].Value;
            try
            {
                domainName = idn.GetAscii(domainName);
            }
            catch (ArgumentException)
            {
                invalid = true;
            }
            return match.Groups[1].Value + domainName;
        }
    }

1 个答案:

答案 0 :(得分:1)

试试这个:

如果要强制使用协议http://,https:// etc。

作为前缀
^(http://|https://|ftp://)\w+\.\w+.*$

如果您不想强制使用协议http://,https:// etc。

作为前缀
^(http://|https://|ftp://)?\w+\.\w+.*$