次のようなfile1.xmlなど、2つの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 ファイルが必要です。
output.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 を理解しようとしています。