B
Bart
I'm trying to transform an xml file to another xml file by using xslt.
for every child node, i need to do some transformations, except for the
first one, so I can't use a for-each construction.
Does anyone now the correct x-path expression or another way to work around
this problem?
You can find an example of the xml file below
I also have another question, can give pass an argument to an xslt script?
tia
Bart
<root>
<child>
<!--some tags-->
</child>
<child>
<a></a>
</child>
<child>
<a></a>
</child>
<child>
<a></a>
</child>
.....
for every child node, i need to do some transformations, except for the
first one, so I can't use a for-each construction.
Does anyone now the correct x-path expression or another way to work around
this problem?
You can find an example of the xml file below
I also have another question, can give pass an argument to an xslt script?
tia
Bart
<root>
<child>
<!--some tags-->
</child>
<child>
<a></a>
</child>
<child>
<a></a>
</child>
<child>
<a></a>
</child>
.....