Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use VBS to get information from a XML file

2025-04-02 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Editor to share with you how to use VBS to get information from XML files, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's go to know it!

The code is as follows:

'*

'* * Script: getxmlelement.vbs

'* * Version: 1.0

'* * Created: 1 Universe 8 Universe 2009 10:58PM

'* * Author: Adriaan Westra

'* * E-mail:

'* * Purpose / Comments:

'* * Get an element from a xml file

'* *

'* *

'* * Changelog:

'* * 1 10:58PM 2008 10:58PM: Initial version

'* *

'*

Dim objXML 'object to hold the xml document

Dim objNnode 'xml node object

'*

'* * create the xml object

Set objXML = CreateObject ("Msxml2.DOMDocument.6.0")

'*

'* * Load the xml from file

ObjXML.load ("album.xml")

'*

'* * Set language for finding information to XPath

ObjXML.setProperty "SelectionLanguage", "XPath"

'*

'* * Get a reference to the node

Set objNode = objXML.selectSingleNode ("/ album/DSC_2710/title")

'*

'* * Output the requested text

Wscript.echo "Title:" & objNode.text

The sample xml file used by the script:

The copy code is as follows:

Bloemen

Pioenroos

Pioenroos

DSC_4777

DSC_4777

Vingerhoedskruid

Vingerhoedskruid

Lavendel

Lavendel

Zonnebloem

Zonnebloem

The above is all the contents of the article "how to use VBS to get information from XML files". Thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report