Re: [xsl] convert xml file to flat file using XSLT or ASP

Subject: Re: [xsl] convert xml file to flat file using XSLT or ASP
From: "cutlass" <cutlass@xxxxxxxxxxx>
Date: Fri, 24 Aug 2001 12:32:47 +0100
going from xml to text is much easier then the reverse

<xsl:output method="text"/> to instruct the parser not to output xml based
stuff.

here is a comma delimeted list

xsl snippet

<xsl:output method="text">
<xsl:template match="/">
<xsl:for-each select="//asset">
<xsl:value-of select="node()"/>,
</xsl:for-each>
</xsl:template>

xml snippet

<resource>
<asset>1</asset>
<asset>2</asset>
<asset>3</asset>
<asset>4</asset>
</resource>

http://www.dpawson.co.uk/xsl/sect4/N10096.html
look here for example

cheers, jim fuller
----- Original Message -----
From: "Gurnandan Kaur" <teclioness@xxxxxxxxxxx>
To: <XSL-List@xxxxxxxxxxxxxxxxxxxxxx>
Sent: Friday, August 24, 2001 12:18 PM
Subject: [xsl] convert xml file to flat file using XSLT or ASP


> Hi
>
> Is there any way I can convert XML file to flat file.
> We are using windows NT and so COM components.
>
> Thanks in advance
>
> Guru
>
> ____________________________________________________________
> Do You Yahoo!?
> Get your free @yahoo.co.uk address at http://mail.yahoo.co.uk
> or your free @yahoo.ie address at http://mail.yahoo.ie
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


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


Current Thread