以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  请问  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=80135)

--  作者:hbhb
--  发布时间:2016/1/16 22:22:00
--  请问
大师:请问如下判断是单个字符判断,还是字符串判断?

If Char.IsDigit("1") Then
    Mess
agebox.Show("这是一个数字!")
End
If


--  作者:大红袍
--  发布时间:2016/1/17 10:57:00
--  

单字符。

 

Dim s As String = "123.456"
Dim i As Double
If Double.TryParse(s, i) Then
    Messagebox.Show("这是一个数字!")
End If