第1个回答 推荐于2016-11-11
这个是一个用正则表达式实现的整数验证,但你使用时最好在提交的按钮事件中去校验,
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本回答被网友采纳