当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript IsNull 函数
The IsNull function returns a Boolean value that indicates whether a specified expression contains no valid data (Null). It returns True if expression is Null; otherwise, it returns False.
IsNull 函数可返回 Boolean 值,指明表达式是否不包含任何有效数据 (Null)。如果 expression 为 Null,则 IsNull 返回 True,即表达式不包含有效数据,否则 IsNull 返回 False
IsNull(expression) |
参数 | 描述 |
---|---|
expression | Required. An expression 必选项。expression 参数可以是任意表达式 |
dim x 输出: False |