Latest web development tutorials

ASP Remove 方法

Dictionary 對象參考手冊 完整的Dictionary對象參考手冊

Remove 方法從Dictionary 對像中刪除一個指定的key/item 對。

語法

DictionaryObject.Remove(key)

参数 描述
key 必需的。与要删除的 key/item 对相关联的 key。

實例

<%
dim d,a,i
set d=Server.CreateObject("Scripting.Dictionary")
d.Add "n","Norway"
d.Add "i","Italy"
d.Add "s","Sweden"

d.Remove("n")

Response.Write("<p>Key values:</p>")
a=d.Keys
for i=0 to d.Count-1
Response.Write(a(i))
Response.Write("<br>")
next

set d=nothing
%>

输出:

Key values:

i
s


Dictionary 對象參考手冊 完整的Dictionary對象參考手冊