脚本之家,脚本语言编程技术及教程分享平台!
分类导航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服务器之家 - 脚本之家 - VBS - VBS教程:方法-Exists 方法

VBS教程:方法-Exists 方法

2020-06-12 11:14脚本之家 VBS

这篇文章为大家介绍了vbs的Exists方法,实现如果在 Dictionary 对象中存在指定键,返回 True;如果不存在,返回 False.

Exists 方法

如果在 Dictionary 对象中存在指定键,返回 True;如果不存在,返回 False

object.Exists(key)

参数

object

必选项. 总是 Dictionary 对象名称。

key

必选项. 在Dictionary 对象中查找的Key 值。

说明

下面例子举例说明如何使用Exists 方法:

Function KeyExistsDemo   Dim d, msg              '创建一些变量。  Set d = CreateObject("Scripting.Dictionary")  d.Add "a", "Athens"     '添加一些键和项目。  d.Add "b", "Belgrade"  d.Add "c", "Cairo"  If d.Exists("c") Then    msg = "指定的键存在。"  Else    msg = "指定的键不存在。"  End If  KeyExistsDemo = msgEnd Function

 

延伸 · 阅读

精彩推荐