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

RE: counting elements with values that match other el

Subject: RE: counting elements with values that match other element values
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Thu, 18 May 2006 15:29:49 +0100
xslt counting values
>     I have a set of elements ("t") with children under them 
> ("t/cSet/c").  I'm looking for children that occur twice.  
> I'd like get a nice 1.0 nodeset, which is the practical 
> reason for trying to shoehorn the task into a single statement. 

In 1.0, use keys as David Carlisle showed.

In 2.0:

<xsl:variable name="children-that-occur-twice">
  <xsl:for-each-group select="t" group-by="t/cSet/c"/>
      <xsl:sequence select="current-group()[last()=2]"/>
  </xsl:for-each-group>
</xsl:variable>

Michael Kay
http://www.saxonica.com/

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-2011 All Rights Reserved.