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

RE: xsl:variable

Subject: RE: xsl:variable
From: "Andrew Welch" <AWelch@xxxxxxxxxxxxxxx>
Date: Thu, 6 Mar 2003 16:56:26 -0000
xsl variable count preceeding
> i would like to declare a variable counter in my xsl file and to
> incremente it whenever i have the occurence toto in my XML file.
> toto is a complextype whose maxOccurs="unbounded" in the schema
> declaration.

Of course you can't reassign a variable, usually you would use something like:

count(preceding::toto|.)

to obtain how many <toto>'s had been processed.

So, for this source xml:

<test>
    <toto>
      <titi/>
      <tata/>
    </toto>
    <toto>
     <titi>hello</titi>
      <tata>bye</tata>
    </toto>
</test>

you could use:

<xsl:template match="titi">
  <xsl:value-of select="count(parent::toto/preceding-sibling::toto|.)"/>
</xsl:template>

(more efficient than preceeding::* axis)

cheers
andrew


---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.458 / Virus Database: 257 - Release Date: 24/02/2003
 

 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.