我有一个xml字符串如下
<root>
<A id="1">This is an example</A>
<B id="2">
<C id="3">this is tag c</C>
</B>
<D id="4">this is tag d</D>
<E id="5">
<F id="6">this is tag f</F>
<G id="7">this is tag g</G>
.
.
.
</E>
</root>
在这里,我只想搜索单词tag
并使用正则表达式(正则表达式)替换它Xml Tag
,我不想在元素内搜索该单词,<E>...</E>
即我想<E>...</E>
在搜索和替换时跳过元素。
任何帮助表示赞赏。提前致谢。