[Home] [By Thread] [By Date] [Recent Entries]
With XSLT 2.0, you can do as following:
<?xml version="1.0" encoding="UTF-8" ?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" indent="yes" /> <xsl:template match="/">
<Proposal>
<Products>
<xsl:for-each select="distinct-values(for $x in //ProdID
return normalize-space($x))">
<ProdId><xsl:value-of select="." /></ProdId>
</xsl:for-each>
</Products>
</Proposal>
</xsl:template></xsl:stylesheet> On 3/29/07, Karthik <ckkarthik@xxxxxxxxx> wrote: Hi , I am new to XSLT. I have to grab the unique Products from the Input below -- Regards, Mukul Gandhi
|

Cart



