当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsNumeric 函数
The IsNumeric function returns a Boolean value that indicates whether a specified expression can be evaluated as a number. It returns True if the expression is recognized as a number; otherwise, it returns False.
IsNumeric 函数可返回 Boolean 值指明表达式的值是否为数字。如果整个 expression 被识别为数字,IsNumeric 函数返回 True;否则函数返回 False。
Note: If expression is a date the IsNumeric function will return False.
注意:如果 expression 是日期表达式,IsNumeric 函数返回 False。
IsNumeric(expression) |
参数 | 描述 |
---|---|
expression | Required. An expression 必选项。expression 参数可以是任意表达式。 |
dim x 输出: True |