> I'm trying to create a CSV TXT file from an XML and have the
> following XSL. There's a large hierarchy of elements under
> the "Vertrag" element and I'm trying not to have to select
> them individually as the structure may change. My select
> statement works and I get all the values with at least 1
> whitespace between elements.
>
> Is there a way to either replace the whitespace with a ";" or
> to concat a ";" onto my selection ?
>
> <xsl:stylesheet version="1.0"
> xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
> <xsl:template match="Vertrag">
> <xsl:value-of select="(.)"/>
> <xsl:text> </xsl:text>
> </xsl:template>
> </xsl:stylesheet>
>
Try
<xsl:for-each select="*">
<xsl:value-of select="."/>
<xsl:if test="position()!=last()">,</xsl:if>
</xsl:for-each>
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|