1.判断字符串是否仅由字母组成
string sTest = "KinderWang";
bool boolTest = new Regex("^[a-zA-Z]*$").IsMatch(sTest);//Match(sTest).Success;
Console.WriteLine("是不是字母:"+boolTest);
1.判断字符串是否仅由字母组成
string sTest = "KinderWang";
bool boolTest = new Regex("^[a-zA-Z]*$").IsMatch(sTest);//Match(sTest).Success;
Console.WriteLine("是不是字母:"+boolTest);