<อ้างอิงวัตถุพจนานุกรมที่สมบูรณ์
ที่มีอยู่วิธีการส่งกลับค่าบูลีนที่บ่งชี้ว่าคีย์ที่ระบุอยู่ในวัตถุพจนานุกรม มันกลับเป็นความจริงถ้าคีย์ที่มีอยู่และเท็จหากไม่ได้
วากยสัมพันธ์
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!
<อ้างอิงวัตถุพจนานุกรมที่สมบูรณ์