1372
public static bool IsEn(string input) //判断字符串是不是全部为英文字母 { string pattern = @"^[A-Za-z]+$"; Regex regex = new Regex(pattern); return regex.IsMatch(input); }