<完整字典對象參考
Exists方法返回一個布爾值,它指示在字典對象中是否存在指定的鍵。 如果該鍵存在,否則為false返回true。
句法
DictionaryObject.Exists(key)
參數 | 描述 |
---|---|
key | 需要。 搜索的關鍵值 |
例
<%
dim d
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","Norway"
d.Add "i","Italy"
d.Add "s","Sweden"
if d.Exists("n")=true then
Response.Write("Key exists!")
else
Response.Write("Key does not exist!")
end if
set d=nothing
%>
Output:
Key exists!
<完整字典對象參考