RE: [xsl] Accessing data from repeating values with the same name

Subject: RE: [xsl] Accessing data from repeating values with the same name
From: "SHEIKH Sajjad" <Sajjad.SHEIKH@xxxxxxxxxxx>
Date: Fri, 23 Jan 2004 16:03:14 +0100
Use the position() function

<xsl:template match="/">
    <xsl:value-of select="Data/Item[position()=3]"/>
</xsl:template>


-----Original Message-----
From: Mark Williams [mailto:mark@xxxxxxxxxxx] 
Sent: 23 January 2004 15:45
To: XSL-List
Subject: [xsl] Accessing data from repeating values with the same name


Hi,

How do I access repeating nodes in an xml file outside of a for-each
statement.

As an example:

<Data>
    <Item>1</Item>
    <Item>2</Item>
    <Item>3</Item>
    <Item>4</Item>
    <Item>5</Item>
</Data>

How would I, say, get the value for 3rd item.

TIA

Mark


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


______________________________________________________________
This message has been scanned for all viruses by BTnet VirusScreen. The
service is delivered in partnership with MessageLabs.

This service does not scan any password protected or encrypted
attachments.  

If you are interested in finding out more about the service, please
visit our website at
http://www.btignite.com/internetservices/btnet/products_virusscreen.htm
==============================================================

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


Current Thread