Hi, My issue with xml is, I have an xml like
<a><b><c><d1 value="x" weight="10"/>
<d2 value="y" weight="20"/>
<d3 value="z" weight="30"/>
</c></b></a>
I need to conver this xml to,
<a><b>
<c><d1 value="x" weight="10"/>
<d2 value="y" weight="20"/>
</c>
<d3 value="z" weight="30"/>
</b>
</a>
I need move specific "d3" element (with all attributes) to another level level of xml.
i.e. move "d3" element from <c> element to <b> element using xsl
Thanks,
Desu.