C#判断是不是汉字

string input = " 里面是不是汉字 ";
bool bl= System.Text.RegularExpressions.Regex.IsMatch(input, @"[\u4e00-\u9fa5]+$");
原文地址:https://www.cnblogs.com/furenjian/p/2984738.html