タグの属性が他のxmlファイルのsrcであるxmlファイルがあります。
<a>
<b>
<c src="other1.xml" name="other1"></c>
<c src="other2.xml" name="other2"></c>
<c src="other3.xml" name="other3"></c>
</b>
</a>
このxmlファイルの内容を次の形式に変更したい
<a>
<b>
<other1> content of other1.xml </other1>
<other2> content of other2.xml </other2>
<other3> content of other3.xml </other3>
</b>
</a>
xsl:variable を使用して src の値を格納しようとしましたが、エラーが発生しています。
誰かが解決策を提案してください....ヒントもいただければ幸いです