Regex rex = new Regex("[a-z0-9A-Z_]+");Match ma = rex.Match("你的字符串");if (ma.Success){ MessageBox.Show("OK");} else { MessageBox.Show("Fail");}