XML から個別の属性値を取得しようとしています: dim i,xmlOx,arr(100) "xmlOx" は次の xml 構造を持っています
<root>
<a x="Animal" y="Bird"/>
<a x="Animal" y="Bird"/>
<a x="Country" y="Bird"/>
<a x="Animal" y="Bird"/>
</root>
asp:
for i=0 xmlOx.selectNodes("a").length-1
arr(i)=xmlOx(i).selectNodes("a").getAttribute("x")
next
同様に、ここでve to get "x" attribute values but I don
は重複が必要です。次に、値を vbscript の配列に追加する必要があります。
誰か私たちのやり方を教えてください。