xslt を使用して親ノードを複数のノードに分割する方法はありますか?
ソース xml を宛先に変換したい。
ソース xml
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<item>
<id>Some id</id>
<node1>
<node2 size="10.5" code="abcd"></node2>
<node2 size="10" code="cdef"></node2>
</node1>
</item>
</channel>
</rss>
宛先 xml
<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<item>
<id>Some id_10.5</id>
<size>10.5</size>
<code>abcd</code>
</item>
<item>
<id>Some id_10</id>
<size>10</size>
<code>cdef</code>
</item>
</channel>
</rss>
宛先 xml のノード ID の値に気付くと、アンダースコアとサイズが追加されています。