I have a xml file which contains the following tags:
<gmd:title>
<gco:CharacterString>READER FOREVER LEADER</gco:CharacterString>
</gmd:title>
I have tried to replace the title:
<gmd:title>
<gco:CharacterString>CHANGE TITLE</gco:CharacterString>
</gmd:title>
But I have only this code:
Set objXMLDoc = CreateObject("Microsoft.XMLDOM")
objXMLDoc.async = False
objXMLDoc.load("albums.xml")
Set Elem = objXMLDoc.documentElement.selectSingleNode("gco:CharacterString")
MsgBox(Elem.text)
How can I do that using vbScript?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…