|
[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
> 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/
|
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








