Shifting nodes in an XML using XSLT
Posted: Sun Nov 11, 2012 5:45 pm
Hi guys,
I have an XML with following structure
<root>
<header>
<line>
<line>
<line>
<subline>
<subline>
<subline>
<root>
how can I transform the above xml to the following structure using XSLT?
<root>
<line>
<subline>
<line>
<subline>
<line>
<subline>
each line is connected with the appropriate subline using a tag id
Thanks in advance for your support.
I have an XML with following structure
<root>
<header>
<line>
<line>
<line>
<subline>
<subline>
<subline>
<root>
how can I transform the above xml to the following structure using XSLT?
<root>
<line>
<subline>
<line>
<subline>
<line>
<subline>
each line is connected with the appropriate subline using a tag id
Thanks in advance for your support.