xsl-list
[Top] [All Lists]

RE: xsl:variable

2003-03-06 09:56:26

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



<Prev in Thread] Current Thread [Next in Thread>