0

我正在尝试合并两个 XML 文件:

第一个 XML:

<data>
  <text>
    <description>this is my description</description>
    <title>this is my title</title>
  </text>
  <text>
    <description>this <other>is my other description</other></description>
    <title>this is my title</title>
  </text>
</data>

第二个 XML:

<data>
  <text>
    <description>this is my <tag>description</tag></description>
  </text>
  <text>
    <description>this is <tag>my other description</tag></description>
  </text>
</data>

输出想要:

<data>
  <text>
    <description>this is my <tag>description</tag></description>
    <title>this is my title</title>
  </text>
  <text>
    <description>this <other>is <tag>my other description</tag></other></description>
    <title>this is my title</title>
  </text>
</data>

我使用并调整了这里给出的 XSLT: how to compare and merge two xml using xslt

但我不能将 OTHER 和 TAG 一起添加到描述中。

提前致谢。

4

0 回答 0