|
Subject: RE: last attribute ? From: Kay Michael <Michael.Kay@xxxxxxx> Date: Tue, 26 Sep 2000 13:13:07 +0100 |
> 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
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: last attribute ?, David Carlisle | Thread | RE: last attribute ?, Brian Young |
| ANN: X4Dialog, Oliver Bruening | Date | RE: last attribute ?, Jarno Elovirta |
| Month |