我有 2 个相同类型的 XML 元素(来自具有相同架构的不同 XML 文档),如下所示:
<Parent>
<ChildType1>contentA</ChildType1>
<ChildType2>contentB</ChildType2>
<ChildType3>contentC</ChildType3>
</Parent>
<Parent>
<ChildType1>contentD</ChildType1>
<ChildType3>contentE</ChildType3>
</Parent>
元素类型 ChildType1、ChildType2 和 ChildType3 在 Parent 元素中最多可以有一个实例。
我需要做的是将第二个父节点的内容与第一个父节点合并到一个新节点中,如下所示:
<Parent>
<ChildType1>contentD</ChildType1>
<ChildType2>contentB</ChildType2>
<ChildType3>contentE</ChildType3>
</Parent>