Re: [xsl] Just the first 'x' elements within a for-each

Subject: Re: [xsl] Just the first 'x' elements within a for-each
From: Simon.Fairey@xxxxxx
Date: Tue, 18 Mar 2003 10:34:05 +0000
Thanks that worked a treat

Si




Niko Matsakis <niko@xxxxxxxxxxxxx>
Sent by: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
17/03/2003 17:09
Please respond to xsl-list

 
        To:     xsl-list@xxxxxxxxxxxxxxxxxxxxxx
        cc: 
        Subject:        Re: [xsl] Just the first 'x' elements within a for-each


one simple way:

<xsl:for-each select="some-expr">
  <xsl:if test="position() &lt;= 2">
    <!-- print/process the element here -->
  </xsl:if>
</xsl:for-each>

Simon.Fairey@xxxxxx wrote:

>Hi,
>
>I've tried numerous connotations of for-each loops, recursive functions 
>etc but for the life of me I can't seem to get something which will only 
>print/process the first 'x' (in my case x is 2) elements and then bail 
out 
>of the for-each or just simply ignore the remaining ones found.
>
>Any help greatly appreciated.
>
>Si
>
>
>**********************************************************************************
>This email may contain confidential material. If you were not an
>intended recipient, please notify the sender and delete all copies.
>We may monitor email to and from our network.
>
>
> XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>
> 
>

-- 
DataPower technology
http://www.datapower.com




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






**********************************************************************************
This email may contain confidential material. If you were not an
intended recipient, please notify the sender and delete all copies.
We may monitor email to and from our network.


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


Current Thread