Regex regex=new Regex(@"([A-Za-z0-9]+)");//引号内是正则表达式 string rating="shakjdfhkaf123";//rating可以是任意的字符串 Match match=regex.Match(rating); if(match.Success) { //匹配成功 }