有效的邮箱地址

        static public bool IsEmail(string email)
        {
            string pattern = @"^\w+([-+.]\w*)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$";
            return Regex.IsMatch(email, pattern);
        }

你可能感兴趣的:(有效的邮箱地址)