C# 判断邮件格式

        public static bool IsValidEmail(string Mail)
        {
            string strRegex = @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*";
            System.Text.RegularExpressions.Regex re = new System.Text.RegularExpressions.Regex(strRegex);
            if (re.IsMatch(Mail))
                return true;
            else
                return false;
        }

 

上一篇:C++标准库(九):正则表达式


下一篇:RegEx (6) - 使用 $ 符号