[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: Grouping the elements

Subject: Re: Grouping the elements
From: Abel Braaksma <abel.online@xxxxxxxxx>
Date: Thu, 14 Sep 2006 15:25:41 +0200
Re:  Grouping the elements
Mukul Gandhi wrote:

<xsl:template match="/Root"> <Root> <xsl:for-each select="*[generate-id() = generate-id(key('x', local-name())[1])]">

Hi Mukul, this was what I was looking for in my solution, but couldn't get right. Humbly updating my solution with yours, gives the following, making it better looking than the original:


<xsl:key name="x" match="Root/*" use="local-name()" />

<xsl:template match="Root">
   <xsl:copy>
       <xsl:apply-templates
        select="*[generate-id() =
           generate-id(key('x', local-name())[1])]"/>
   </xsl:copy>
</xsl:template>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.