我有两个 xml 文件,比如file1.xml,如下所示:
<?xml version="1.0"?>
<root >
<text id='a'>This is to be replaced</text>
<note>This should not be touched</note>
<text id='b'>This is intact</text>
</root>
file2.xml如下
<?xml version="1.0"?>
<root >
<text id='a'>Replacement Text</text>
<note>This is a personal note</note>
</root>
我期望一个格式的输出 xml 文件:
输出.xml
<?xml version="1.0"?>
<root>
<text id='a'>Replacement Text</text>
<note>This should not be touched</note>
<text id='b'>This is intact</text>
</root>
请帮助我使用 xsl 以获得所需的输出。这不是家庭作业,我正在尝试理解 xslt。