C#判断是否有中文
using System.Text.RegularExpressions;
Regex reg = new Regex(@"[\u4e00-\u9fa5]");
if (reg.IsMatch(no))
{
//有
}
using System.Text.RegularExpressions;
Regex reg = new Regex(@"[\u4e00-\u9fa5]");
if (reg.IsMatch(no))
{
//有
}