xsl-list
[Top] [All Lists]

Re: concating strings in a loop

2004-02-06 03:35:43
Lainaus Herwig Posedu <herwig(_dot_)posedu(_at_)unycom(_dot_)com>:

< hi!
< i want to display a list of persons "comma-seperarted" on my pdf-file.
< how can i concate those person-names seperated with a "," but in that
< way, that after the last name is no ",".
< i did it like this
<
< <xsl:for-each select="person">
< <xsl:value-of select="name" />
< ,<fo:inline color="white">.</fo:inline>
< </xsl:for-each>
< -> the output for example is: mike, john,
< -> i want to have: mike, john
< how can i concate the strings and substring it, so that the last comma
< will be removed

<xsl:for-each select="person">
 <xsl:value-of select="name" />
 <xsl:if test="../position()!=last()">,</xsl:if>
</xsl:for-each>


***************************************************
* Jarkko Moilanen                                 *
* Dokumentoinnin kehittäjä                        *
* Profound XML technology Expert                  *
* DokuMentori Oy                                  *
* www.dokumentori.fi                              *
***************************************************

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



<Prev in Thread] Current Thread [Next in Thread>