Subject:Please help to create a XSL to remove the duplicates from this xml file Author:ramesh kumar Date:12 Feb 2009 07:31 AM Originally Posted: 12 Feb 2009 07:11 AM
A part of my xml looks like this:
<A>
<city>xxxx</city>
</A>
<B>
<city>yyyy</city>
</B>
<A>
<city>zzzz/city>
</A>
The desired output should be:
A xxxx
zzzz
B yyyy
That is, A should be print once and associated data should be print under that.
Can this be done?