I needed to use XSLT to generate CSV text output from XML
my XML
<Row>
<cell>Currecy</cell>
<cell>RUR</cell>
<cell>USD</cell>
<cell>EURO</cell>
</Row>
<Row>
<cell>Param</cell>
<cell>17.2</cell>
<cell>12.12</cell>
<cell>100.2345</cell>
</Row>
<Row>
<cell>Param1</cell>
<cell>100</cell>
<cell>200</cell>
<cell>3556</cell>
</Row>
output format CSV
Cur Param, Param1
RUR, 17.2, 100
USD, 12.12, 200
EURO, 100.2345, 3556
I do not know how to make a "transposition"
If you had a valid XML input such as:
then you could use the following stylesheet:
XSLT 1.0
to obtain: