This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: for loop


Charly wrote:


> does anyone knows how to make a loop for in xsl.
> Something more like .
> 
>    <xsl:loop name="i" from="1" to="10" step="1">
>       $i
>    </xsl:loop>

<xsl:for-each select="//a-lot-of-canned-nodes[position() &lt;= 10]">
	<xsl:value-of select="position()"/>
</xsl:for-each>

But could you explain why do you want such cheating in a declarative 
language like xslt?

-- 
Oleg Tkachenko
Multiconn International, Israel


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]