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

Re: looping in xslt

Subject: Re: looping in xslt
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Thu, 29 Apr 2004 15:00:40 +0100
looping in xslt
Hi Joeri,

> to find these unique dates i use
> <xsl:key name="mydates" match="date" use="value"/>
> and to loop 3 times i use.
> <xsl:for-each select="/root/rec/date[generate-id() =
> generate-id(key('mydates',value)[1])]">
>
> I need to loop multiple times so i repeat the "for-each" multiple
> times in my code. Is there a way to avoid this. It takes a long time
> to find all the unique dates again and again.

Store the unique dates in a variable, and then do the <xsl:for-each>
selecting the variable:

  <xsl:variable name="unique-dates"
    select="/root/rec/date[generate-id() =
                           generate-id(key('mydates', value)[1])]" />
  <xsl:for-each select="$unique-dates">
    ...
  </xsl:for-each>
  <xsl:for-each select="$unique-dates">
    ...
  </xsl:for-each>
  <xsl:for-each select="$unique-dates">
    ...
  </xsl:for-each>

> Can i store a count <xsl:for-each
> select="count(/root/rec/date[generate-id() =
> generate-id(key('mydates',value)[1])])"> in a variable and use this
> in a loop?

You can, but I'm not sure that you want to unless you want to output
the number of unique dates?

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.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-2013 All Rights Reserved.