函数参考


IsNumber

检测某个变量是否数字类型数据.

IsNumber ( 变量 )

参数

变量 要检查的变量/表达式.

返回值

成功: 返回值为1.
失败: 返回值为0,说明指定的表达式并非数字类型.

注意/说明

只有两种基本的类型可以用于检查:字符串(String)和 数字(Number).另外,数字既可以是整数也可以是小数/浮点数.

If the variable is a numeric value represented as a string, then IsNumber will return 0.

相关

IsArray, IsFloat, IsInt, IsString, IsBool, IsHWnd, IsBinary, IsPtr

示例/演示


Local $iLife = 42
If IsNumber($iLife) Then
    MsgBox(4096, "", "The variable is a number")
Else
    MsgBox(4096, "", "The variable is not a number")
EndIf