VBA:将带有单个标记的XML解析为两个单独的字符串(MSXML2)

时间:2016-01-07 12:49:31

标签: excel-vba xml-parsing msxml vba excel

我有一个看起来像这样的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文件进行分阶段。

我可以使用selectNodesselectSingleNode方法获取全文标记(两行)。

但是如何将<text>标记的第一行和第二行分成两个不同的字符串?

0 个答案:

没有答案