最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
判断用户输入为数字函数
时间:2022-06-25 03:14:43 编辑:袖梨 来源:一聚教程网
判断用户输入为数字函数
protected void button2_click(object sender, eventargs e)
{
//判断正整数
int j=0;
for (int i = 0; i < textbox1.text.length; i++)
{
if (char.isnumber(textbox1.text, i))//这个方法用来判断整数还可以,判断负数和小数就失效了
j++;
}
if (j == textbox1.text.length)
{
response.write("ok");
}
else
{ response.write ("no");}
}但是,出现负数或者小数的时候,以上方法失效,则,使用自定义功能函数
public bool isnumber( object obj)
{
bool result = true;
try
{
string str = obj.tostring();
double d ;
d = double.parse(str);
}
catch
{ //parse 函数进行转换,不成功则抛出异常
result = false;
}
return result;}
protected void button3_click1(object sender, eventargs e)
{
//判断数if (isnumber(textbox1.text))
{
response.write("是数字");
}
else
{ response.write("不是数字"); }
}
相关文章
- 人们熟悉的寄居蟹属于以下哪种分类 神奇海洋11月21日答案 11-21
- 第五人格11.22共研服有什么更新 11月22日共研服更新内容介绍 11-21
- 原神恰斯卡怎么培养 11-21
- 无期迷途四星装束是谁 11-21
- 王者荣耀帝丹高中校服怎么获得 11-21
- 光遇姆明季后续版本怎么玩 11-21