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]

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

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