VBA - What's The XPath Syntax To Get Tag Names
问题 I am trying to use a VBA macro to parse XML file. Given with the following structure: <bookstore> <book category="children"> <title>Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="web"> <title>Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> How can I enumerate the output with element tags with its corresponding values as shown below? book | category | children title