codecamp

VBScript IsNumeric 函数

VBScript IsNumeric 函数返回 Boolean 值,表示表达式能否当作一个数,并且使用该数进行计算。 


VBScript 参考手册完整的 VBScript 参考手册

IsNumeric 函数返回一个布尔值,指示指定的表达式是否可作为数字来计算。如果表达式作为数字来计算则返回 True ,否则返回 False。

注意:如果表达式是一个日期,IsNumeric 函数将返回 False。

语法

IsNumeric(expression)

参数 描述
expression 必需。一个表达式。

实例

实例

<script type="text/vbscript">
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))
</script>

以上实例输出结果:

True
True
False
True
False

尝试一下 »

VBScript 参考手册完整的 VBScript 参考手册
VBScript TypeName 函数
VBScript SetLocale 函数
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

VB 函数

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }