c#判断字符串是否全部为数字和字母

       /// 
       /// 判断输入的字符串是否只包含数字和英文字母
       /// 
       /// 
       /// 
       public static bool IsNumAndEnCh(string input)
       {
           string pattern = @"^[A-Za-z0-9]+$";
           Regex regex = new Regex(pattern);
           return regex.IsMatch(input);
       } 


你可能感兴趣的:(C#)