I need to convert an XML file into a CSV file.
If i have an XML file formatted as follows:
<root>
<table1 id="100" description="this is a test" anotherfield="test test" />
<table1 id="101" description="this is a test" anotherfield="test test" />
<table1 id="102" description="this is a test" anotherfield="test test" />
<table1 id="103" description="this is a test" anotherfield="test test" />
</root>
The transformation needs to handle more fields
than shown in the example XML file above. Is there a way to loop through attributes?
Can you please provide me with a sample XSL file to tranform.
Thanks
Start Free Trial