最新的Web开发教程
 

VBScript中IsNumeric函数


<完整的VBScript参考

IsNumeric函数返回一个布尔值,它指示是否指定的表达式可以作为一个数来评估。 如果表达式被识别为数字,则返回true; 否则,返回False。

Note:如果expression是日期IsNumeric函数将返回FALSE。

句法

IsNumeric(expression)

参数 描述
expression 需要。 一种表达

<%

Dim x
x=10
response.write(IsNumeric(x) & "<br />")
x=Empty
response.write(IsNumeric(x) & "<br />")
x=Null
response.write(IsNumeric(x) & "<br />")
x="10"
response.write(IsNumeric(x) & "<br />")
x="911 Help"
response.write(IsNumeric(x))

%>

代码的输出将是:

True
True
False
True
False
显示示例»

<完整的VBScript参考