RE: [xsl] increment variable with xsl:for-each

Subject: RE: [xsl] increment variable with xsl:for-each
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Fri, 26 Mar 2004 19:29:39 -0000
(a) you can't (variables are immutable)
(b) you don't need to: just use position()

Michael Kay 

# -----Original Message-----
# From: Tuan Luu [mailto:tuanluu@xxxxxx] 
# Sent: 26 March 2004 17:59
# To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
# Subject: [xsl] increment variable with xsl:for-each
# 
# hello
# I'm looking for a code to increment a variable in xsl:for-each loop
# 
# I ended up here: 
# 
# <xsl:variable name="a">1</xsl:variable>
# 
# <xsl:for-each select="name">
# 
# <xsl:value of select="{$a+1}"/>
# <xsl:value of select="{$a}"/>
# 
# </xsl:for-each>
# 
# 
# thanks for any answer
# 
# 
# -- 
# +++ NEU bei GMX und erstmalig in Deutschland: T\V-gepr|fter 
# Virenschutz 
# +++ +++
# 100% Virenerkennung nach Wildlist. Infos: 
# http://www.gmx.net/virenschutz
# 
# 
# 

Current Thread