解决办法:
1)定义一个string,用来表示数字的正则表达式:
privatestring pattern =@"^[0-9]*$";
2)定义一个string,用来记录TextBox原来的内容,以便在输入非数字的时候,文本框的内容可以恢复到原来的值。
privatestring param1 =null;
3)在textBox的TextChanged事件中判断输入的是否是数字,如果是数字,那么就把文本框的内容保存在param1中;如果不是数字,那么取消这次输入,即重新设置文本框的内容为param1:
privatevoid textBoxParam1_TextChanged(object sender, EventArgs e)
{
Match m = Regex.Match(this.textBoxParam1.Text, pattern); // 匹配正则表达式
if (!m.Success) // 输入的不是数字
{
this.textBoxParam1.Text = param1; // textBox内容不变
// 将光标定位到文本框的最后
this.textBoxParam1.SelectionStart =this.textBoxParam1.Text.Length;
}
else // 输入的是数字
{
param1 =this.textBoxParam1.Text; // 将现在textBox的值保存下来
}
}
[^%&',;=?$\x22]+
这个是匹配1~n个 ^%&',;=?$\"之外的字符,
输入f' 此时传入了 f' , 因为f是正确的字符, 所以匹配了f 返回true
正确方法是加上开头与结尾标志
string putter = "^[^%&',;=?$\x22]+$"; 意思就是从开头到结尾是1~n个非特殊符号字符
正确方法是加上开头与结尾标志
string putter = "^[^%&',;=?$\x22]+$"; 意思就是从开头到结尾是1~n个非特殊符号字符
代码如下:
Regex reg = new Regex(@"^\d{1,12}(?:\.\d{1,4})?$");
if (!reg.IsMatch(msFee_ss.Text))
{
MessageBox.Show("只能输入数字", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
msFee_ss.Text="";
}
else
{
MessageBox.Show("输入正常", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
Regex reg = new Regex(@"^\d{1,12}(?:\.\d{1,4})?$");
if (!reg.IsMatch(msFee_ss.Text))
{
MessageBox.Show("只能输入数字", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
msFee_ss.Text="";
}
else
{
MessageBox.Show("输入正常", "提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}