C# 判断字符串中是否含有字母

时间:2020-12-25 20:10:38

方法一:用正则表达式的方法

//引用的命名空间using System.Text.RegularExpressions;

public bool isExists(string str)
        {
            return Regex.Matches(str, "[a-zA-Z]").Count > 0;
        }

方法二:

#region 判断字符串是否有字母
        /// <summary>
        /// 名称:IsAllChar
        /// 判断文本是否全是字母组合
        /// </summary>
        /// <param name="text">需判断的文本或是字符串</param>
        /// <returns>返回true代表有字母存在</returns>
        public static bool IsAllChar(string text)
        {
            foreach(char tempchar in text.ToCharArray())
            {
                if (!char.IsLetter(tempchar))
                {
                    return true;
                }
            }
            return false;
        }
        #endregion