CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    Join Date
    Oct 2005
    Posts
    113

    Arrow xml to csv conversion

    HI,

    How to convert XML file into csv or txt file?
    any ideas?

    Thank you!

  2. #2
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: xml to csv conversion

    Well...what exactly want you convert and how? A xml file is also a text file in the common sense...since it contains only ASCII...

  3. #3
    Join Date
    May 2003
    Location
    Denmark
    Posts
    1,315

    Re: xml to csv conversion

    One could use an XSL stylesheet.
    The biggest problem encountered while trying to design a system that was completely foolproof,
    was, that people tended to underestimate the ingenuity of complete fools.
    Douglas Adams

  4. #4
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    Re: xml to csv conversion

    I think just searching the internet for +xml +csv would get results faster than posting here. The following are some results I got that way.

    Xml To Csv
    xml-dev - Re: [xml-dev] Converting xml to csv with xslt
    Conversion of XML to CSV - An XSLT example

    I think you can find more if you search for them.

    The following are good places to look for XML stuff.

    DevX: XML Zone
    ZVON.org - ZVON
    TopXML : XML Tools, XML Articles and XML Learning Tutorials
    W3Schools Online Web Tutorials
    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

  5. #5
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    Re: xml to csv conversion

    Quote Originally Posted by Andreas Masur
    Well...what exactly want you convert and how? A xml file is also a text file in the common sense...since it contains only ASCII...
    You would not say that if you knew more about XML and related tools such as XSL and Schemas and more.
    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

  6. #6
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: xml to csv conversion

    Quote Originally Posted by Sam Hobbs
    You would not say that if you knew more about XML and related tools such as XSL and Schemas and more.
    Wouldn't I? Interestingly enough I am working with these things since 2 years...however, feel free to enlight me...

  7. #7
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266

    Re: xml to csv conversion

    Quote Originally Posted by Andreas Masur
    Well...what exactly want you convert and how?
    Some questions require clarification, but I think it is possible to provide useful answers to this question without further clarification.
    Quote Originally Posted by Andreas Masur
    A xml file is also a text file in the common sense...since it contains only ASCII...
    That is as useful as telling someone asking about C++ that a C++ file contains only ASCII.

    XML alone is relatively simple, but the subject of XML usually includes other things, such as XSLT. I have never seen you say that a C++ file contains only ASCII, yet an XSLT file can contain as much logic as a C++ file.
    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured