我有一个看起来像这样的XML文件:
<xml>
<title>This is the title</title>
<text>This is the first line<br/>This is the second line.</text>
<title>This is another title</title>
<text>This is another first line<br/>This is another second line.</text>
</xml>
我现在想要使用VBA脚本和MSXML2对此XML文件进行分阶段。
我可以使用selectNodes
或selectSingleNode
方法获取全文标记(两行)。
但是如何将<text>
标记的第一行和第二行分成两个不同的字符串?