C 判斷只能輸入數字

2021-06-06 23:20:34 字數 869 閱讀 1422

c#判斷只能輸入數字

2010-11-06 22:57

1.try

catct

2.string ss=s.text;

bool num=false;

foreach (char c in ss)

}if (num) messagebox.show("yes");

else messagebox.show("no");

3.system.text.regularexpressions.regex.ismatch(s.text,"^\d+$")

==true:是數字

==false:不是數字

4.事件keypress

if (e.keychar >= 31 && (e.keychar < '0' || e.keychar > '9'))

5.int

result;

if(int32.tryparse(textbox1.text, system.globalization.numberstyles.integer, system.globalization.numberformatinfo.currentinfo,

outresult))

else

6.try

catch

(exception)

7.if

(long

.tryparse(

this

.textbox1.text))

8.function

check()((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d$/);

if(str

!==null

)else

等等。

TextBox只能輸入數字幾種判斷方式

前台 function isnum 後台 protected void button1 click object sender,eventargs e catch exception 第一種 try catch方法 例 try catch exception ex 注 如果有很多字串要求判斷,此方法...

C 中限制只能輸入數字

在winform c 中要實現限制textbox只能輸入數字,一般的做法就是在按鍵事件中處理,判斷keychar的值。限制只能輸入數字,小數點,backspace,del這幾個鍵。數字0 9所對應的keychar為48 57,小數點是46,backspace是8。拖乙個textbox到窗體上,新增o...

c 設定TextBox只能輸入數字

呼叫textbox的keypress事件 private void txtuserid keypress object sender,keypresseventargs e 但是他不能支援輸入負數 所以我就把 修改了一下 呼叫textbox的keypress事件 private void force...