|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Unique Nodes
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








