是否包含中文

public static bool HasChinese(string str)
{
return Regex.IsMatch(str, @"[u4e00-u9fa5]");
}

原文地址:https://www.cnblogs.com/guzhengtao/p/20180706_1534.html