C# 正则表达式输入验证必须为汉字

例子:

string str = "测试";
string reg = @"^[\u4e00-\u9fa5]*$";
Match match = Regex.Match(str,reg);
if (match.Success)
{
Console.WriteLine("输入正确!");
}
else
{
Console.WriteLine("输入有误!");
}

 

posted on 2018-06-08 17:05  尘世辣么美  阅读(418)  评论(0编辑  收藏  举报

导航