Is it possible to convert any given XML into CSV format? I know I can use XSLT to convert XML into CSV, if you know the XML DTD/Schema. But I don't know the name of tags and # of tags used in the XML.
Ex:
<ROOT>
<ROW>
<COL1>123</COL1>
<COL2>224</COL2>
<COL3>eterte</COL3>
</ROW>
</ROOT>
Need to convert into
COL1,COL2,COL3
123,224,eterte
I would really appreciate any help.
Ex:
<ROOT>
<ROW>
<COL1>123</COL1>
<COL2>224</COL2>
<COL3>eterte</COL3>
</ROW>
</ROOT>
Need to convert into
COL1,COL2,COL3
123,224,eterte
I would really appreciate any help.