|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: XML To CSV
ashushujev@xxxxxxxxxxxx wrote:
<xsl:template match="/"> <xsl:apply-templates select="//Account[1]/descendant::*" />
<xsl:template match="*"> <xsl:if test = "normalize-space(text())!=''" > <xsl:value-of select = "." /> <xsl:if test = "not(position()=last())" > <xsl:text > ,</xsl:text> I suspect this template works by accident only... Try something like
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"/> <xsl:template match="Account">
<!-- select leaf nodes -->
<xsl:apply-templates select="descendant::*[not(*)]"/>
<!-- one way to produce a line feed -->
<xsl:text>
</text>
</xsl:template> <xsl:template match="*">
<xsl:value-of select = "." />
<xsl:if test = "not(position()=last())" >
<xsl:text > ,</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>Beware, untested. J.Pietschmann
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








