检测某个变量是否数字类型数据.
IsNumber ( 变量 )
变量 | 要检查的变量/表达式. |
成功: | 返回值为1. |
失败: | 返回值为0,说明指定的表达式并非数字类型. |
Local $iLife = 42
If IsNumber($iLife) Then
MsgBox(4096, "", "The variable is a number")
Else
MsgBox(4096, "", "The variable is not a number")
EndIf