Hello!
I am trying to produce comma-separated list of text nodes
from any XML using the following transform:
<xsl:template match="/">
<xsl:apply-templates select="top"/>
</xsl:template>
<xsl:template match="text()[normalize-space()!='']">
<xsl:value-of select="."/>,
</xsl:template>
However I can't get rid of trailing comma.
I tried the
<xsl:if test="position()!=1">
test, however the position() is equal 1 more then once.
Any ideas how can I get around?
Thanks,
Evg
____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
| Current Thread |
- tough problem
- Evgenii Bazarov - 19 May 00 10:59:42 MSD <=
- <Possible follow-ups>
- Kay Michael - Mon, 22 May 2000 17:52:48 +0100
|
|