3个回答
展开全部
这个是一个用正则表达式实现的整数验证,但你使用时最好在提交的按钮事件中去校验,
public static bool IsIntNum(string str,bool msg)
{
System.Text.RegularExpressions.Regex reg1
= new System.Text.RegularExpressions.
Regex(@"^[-]?[1-9]{1}\d*$|^[0]{1}$");
bool ismatch=reg1.IsMatch(str);
if(!ismatch)
MessageBox.Show("您输入的数字不是整数!", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return ismatch;
}
注意,这里调用了MessageBox对象,必须在引用时引用Windows.form
public static bool IsIntNum(string str,bool msg)
{
System.Text.RegularExpressions.Regex reg1
= new System.Text.RegularExpressions.
Regex(@"^[-]?[1-9]{1}\d*$|^[0]{1}$");
bool ismatch=reg1.IsMatch(str);
if(!ismatch)
MessageBox.Show("您输入的数字不是整数!", "操作提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
return ismatch;
}
注意,这里调用了MessageBox对象,必须在引用时引用Windows.form
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
{
e.Handled = false;
}
}
{
e.Handled = true;
if (e.KeyChar >= '0' && e.KeyChar <= '9')
{
e.Handled = false;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static function CheckNumber(strValue:String):Boolean
{
var regTextNumber:RegExp = /^(\d)*$/;
return regTextNumber.test(strValue);
}
这个方法就是验证数字的!
{
var regTextNumber:RegExp = /^(\d)*$/;
return regTextNumber.test(strValue);
}
这个方法就是验证数字的!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询