Hi!
I need to transform a large document (200Mb+).
The structure looks like this:
<root>
<object>
<id>111111112222</id>
<sex>2</sex>
<diagLoc>018000</diagLoc>
<repHosp>10013 </repHosp>
<repClin>241</repClin>
... to a total of 35 different elements
...
</object>
...
</root>
There are almost 200 000 objects.
I need to change the name of the root element and select some of the 35
elements out of the document. Do I have to write a parser to split it up or
is there a way to solve it just using XSLT?
What's the best approach?
/Clas