C# 程序屏蔽特殊字符输入

TextBox接受用户输入,想过滤特殊字符的输入,比如标点符号和运算符等,要可以接受中文输入。
是WinForm程序,不是WebForm……

private bool 特定字符判断(char c)
{
if (c == '*')
{
return true;
}
else
{
return false;
}
}

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (特定字符判断(e.KeyChar))
{
e.Handled = true;
}
}

以上方法不影响汉字的输入,同时也不能保证复制粘贴的字符串,所以最保险的算法的是,在TextBox的TextChanged事件里面对字符串进行逐一判断,把不要的剔除。
温馨提示:内容为网友见解,仅供参考
第1个回答  2009-11-28
在text changed事件里面判断当前字符,判断方法可以使用正则表达式。。。
如果觉得正则表达式复杂的,可以使用简单点的——逐个字符判断
第2个回答  2009-11-28
用正则表达式。
第3个回答  2009-11-28
用正则表达式可以搞定

C# 程序屏蔽特殊字符输入
private bool 特定字符判断(char c){ if (c == '*'){ return true;} else { return false;} } private void textBox1_KeyPress(object sender, KeyPressEventArgs e){ if (特定字符判断(e.KeyChar)){ e.Handled = true;} } 以上方法不影响汉字的输入,同时也不能保证复制粘贴的字符串,...

相似回答