标签:
public bool IsAllChineseCh(string input) { Regex regex = new Regex("^[\u4e00-\u9fa5]+$"); return regex.IsMatch(input); }
C#输入的字符串只包含汉字
原文地址:http://www.cnblogs.com/wenjieyatou/p/5469940.html