Hi peoples,
Suppose I have an XML file
<Application>
<Segment1>
<ID>Sam</ID>
<Fee>2.50</Fee>
<Fee>1.00</Fee>
</Segment1>
</Application>
In a nutshell, I want to move the two <Fee> Elements to another section so it looks like this;
<Application>
<Segment1>
<ID>Sam</ID>
</Segment1>
<Segment2>
<Fee>2.50</Fee>
<Fee>1.00</Fee>
</Segment2>
</Application>
It would invlove deleting the <Fees> from the 1st segment and copying it to segment 2.
Any help would be greatly appreciated.
Thanks in advanced