[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

XML To CSV

Subject: XML To CSV
From: <ashushujev@xxxxxxxxxxxx>
Date: Thu, 29 Jul 2004 10:08:01 +0200
xml to csv
Hi,

I have an XML stream that I would like to convert to CSV file thru XSL
transformation. I use the following stylesheet, but the problem is it
only selects top elements within an 'Account' node and does not process
elements for 'Name' element.

Stylesheet:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text"/>
<xsl:template match="/">
	<xsl:apply-templates select="//Account[1]"/>
</xsl:template>    
<xsl:template match="Account">
	<xsl:for-each select="*"><xsl:value-of select="."/><xsl:if test="last()
> position()">,</xsl:if></xsl:for-each><xsl:text></xsl:text>   
</xsl:template>
</xsl:stylesheet>


XML:
<?xml version="1.0"?>
<Data>
  <Account>
    <AccountNumber>1000748</AccountNumber>
    <SequenceNo>1</SequenceNo>
    <AccountBalance>1052.35</AccountBalance>
    <Name>
      <CitizenNameTitle>Mr</CitizenNameTitle>
      <CitizenNameForename>Joe</CitizenNameForename>
      <CitizenNameSurname>Bloggs</CitizenNameSurname>
    </Name>
  </Account>
</Data>

Output:
1000748,1,1052.35,MrJoeBloggs

I would appreciate any help in this matter.

Andrew

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.