RE: [xsl] CSV instead of white-space

Subject: RE: [xsl] CSV instead of white-space
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Mon, 28 Oct 2002 17:53:40 -0000
> 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>&#13;</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


Current Thread