xsl-list
[Top] [All Lists]

RE: CSV instead of white-space

2002-10-28 10:53:40
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(_dot_)H(_dot_)Kay(_at_)ntlworld(_dot_)com
work: Michael(_dot_)Kay(_at_)softwareag(_dot_)com 


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



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