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

RE: Loops and variables question

Subject: RE: Loops and variables question
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 27 Nov 2003 14:14:53 +0200
angels in bondage
Hi,

> I want to build a list with the quantity attribute of the all 
> ROOMS nodes.
> I have this XML:
> 
> <ROOMS>
>  <ROOM quantity="5">
>  <ROOM quantity="3">
>  <ROOM quantity="7">
> </ROOMS>
> 
> My desired output is:
> 1,2,3,4,5,1,2,3,1,2,3,4,5,6,7
> 
> I tryed with an auxiliary variable <xsl:variable 
> name="num"...>but I can
> increment this variable for each node.

No you can't, variables are immutable in XSLT once bound.

  <xsl:output method="text"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="ROOM" name="counter">
    <xsl:param name="i" select="1"/>
    <xsl:if test="$i &lt;= @quantity">
      <xsl:value-of select="$i"/>
      <xsl:if test="not(not(following-sibling::ROOM) and $i = @quantity)">,</xsl:if>
      <xsl:call-template name="counter">
        <xsl:with-param name="i" select="$i + 1"/>
      </xsl:call-template>
    </xsl:if>
  </xsl:template>

Cheers,

Jarno - Velvet Acid Christ: Angels In Bondage (B-Side / mp3 128 Mix / by Angels In Bondage)

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


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.