This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: convert xml file to flat file using XSLT or ASP



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@yahoo.co.uk>
To: <XSL-List@lists.mulberrytech.com>
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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]