<完整的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參考