当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsNumeric 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript IsNumeric 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 176 ::
收藏到网摘: n/a

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 参数可以是任意表达式。

实例 1

dim x
x=10
document.write(IsNumeric(x) & "<br />")
x=Empty
document.write(IsNumeric(x) & "<br />")
x=Null
document.write(IsNumeric(x) & "<br />")
x="10"

document.write(IsNumeric(x) & "<br />")
x="911 Help"
document.write(IsNumeric(x))
输出:
True
True
False
True
False

评论 (0) All

登陆 | 还没注册?