以下のような入力 XML があります。
入力 XML
<description-page>
<noted>12000 </noted>
<noted>15000</noted>
<noted>NOTE</noted>
</description-page>
<idescription-note>
<noted>12000</noted>
<noted>15000</noted>
<noted>ENG CHG</noted>
</idescription-note>
次のように出力したい
<sample>
<input>
<noted>12000</noted>
<noted>12000</noted>
</input>
<input>
<noted>15000</noted>
<noted>15000</noted>
</input>
<input>
<noted>NOTE</noted>
<noted>ENG CHG</noted>
</input>
</sample>
ここでは、すべての説明ページ (注記) が必要な idscription-note (注記) 要素
私が今やっているのはxsltです
<xsl-template match="description-page | idescription-note>
これは私がxsltを試している方法ですが、2つのノードを一致させる方法に苦労していません。
ここに案内してください。
よろしくカーシック