C#正则怎么判断字符串中是否有汉字

Regex r = new Regex(".*[\u4e00-\u9faf].*");
r.IsMatch(username)

原文地址:https://www.cnblogs.com/ZX-LMY/p/5535087.html