RE: last attribute ?

Subject: RE: last attribute ?
From: Brian Young <Brian.Young@xxxxxxx>
Date: Tue, 26 Sep 2000 15:03:08 -0400
Hello,

Why would the attributes not be processed in document order?  If they are not, how can this be forced?

Thanks,
   Brian Young


-----Original Message-----
From: Kay Michael [mailto:Michael.Kay@xxxxxxx]
Sent: Tuesday, September 26, 2000 8:13 AM
To: 'xsl-list@xxxxxxxxxxxxxxxx'
Subject: RE: last attribute ?


> I tried e.g: (idea: if you are last attribute of current node 
> don't do this if)
> 
> <xsl:if test="@*[position() != last()]">
> 	<xsl:text>,</xsl:text>
> </xsl:if>  
> 
> but position function can't count attributes ??

Write 
<xsl:for-each select="@*">
        ...
       <xsl:if test="position() != last()">
       	<xsl:text>,</xsl:text>
       </xsl:if>
</xsl:for-each>

The position() and last() functions relate to the position of the node in
the list of nodes being processed by xsl:for-each. Although it's
unpredictable in which order the attributes will be processed, they will be
in some sequence, and only one of them can be the last.

Mike Kay   


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


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


Current Thread