Hi people!
I'm trying to "program" my very first project where I want to transform an xml file into another one.
I found that xsl is the way to go, however I'm lost now.
The input file is something like:
What I want to achieve is an xml in the form of
I have googled and tried the samples included in the Xselerator software, but I could not find out how to do this.
Any help would be much, much appreciated!
cheers!
v.
I'm trying to "program" my very first project where I want to transform an xml file into another one.
I found that xsl is the way to go, however I'm lost now.
The input file is something like:
Code:
<E A="something" B="param1" V="valueofparam1">
<E A="something" B="param2" V="valueofparam2"> ...
What I want to achieve is an xml in the form of
Code:
<param1>valueofparam1</param1>
<param2>valueofparam2</param2> ...
I have googled and tried the samples included in the Xselerator software, but I could not find out how to do this.
Any help would be much, much appreciated!
cheers!
v.