[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Using number in an expression


Subject: Re: [xsl] Using number in an expression
From: Oliver Becker <obecker@xxxxxxxxxxxxxxxxxxxxxxx>
Date: Mon, 25 Feb 2002 14:16:43 +0100 (MET)

Hi Rick,

> I am using <xsl:number/> to output the number of the current element. I
> would like to add another number (99) to the value of <xsl:number/>.

Store the result of <xsl:number/> in a variable and add 99 to the
variable value.

<xsl:variable name="number"><xsl:number /></xsl:variable>
<xsl:value-of select="$number + 99" />

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@xxxxxxxxxxxxxxxxxxxxxxx             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


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



Current Thread