码迷,mamicode.com
首页 > Windows程序 > 详细

实现:C#窗体中的文本框只能输入中文汉字,其他输入无效。问:正则表达式怎么用?

时间:2018-06-15 10:59:04      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:har   end   ext   handle   hid   输入   正则   link   details   

原文:实现:C#窗体中的文本框只能输入中文汉字,其他输入无效。问:正则表达式怎么用?

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
? ? ? ? {
? ? ? ? ? ? Regex rg = new Regex("^[\u4e00-\u9fa5]$");
? ? ? ? ? ? if (!rg.IsMatch(e.KeyChar.ToString()) && e.KeyChar != ‘\b‘) //‘\b‘是退格键
? ? ? ? ? ? {
? ? ? ? ? ? ? ? e.Handled = true;
? ? ? ? ? ? }
? ? ? ? }
或者
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
? ? ? ? {
? ? ? ? ? ? Regex rg = new Regex("^[\u4e00-\u9fa5\b]$"); //\b是退格键
? ? ? ?if (!rg.IsMatch(e.KeyChar.ToString()))
? ? ? ? ? ? {
? ? ? ? ? ? ? ? e.Handled = true;
? ? ? ? ? ? }
? ? ? ? }




文本框只能输入汉字,字母、数字、符号、空格键入无效,退格能用,完全实现了。非常感谢!


转自:http://zhidao.baidu.com/question/421426815.html

实现:C#窗体中的文本框只能输入中文汉字,其他输入无效。问:正则表达式怎么用?

标签:har   end   ext   handle   hid   输入   正则   link   details   

原文地址:https://www.cnblogs.com/lonelyxmas/p/9185859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!