Hello,
I have a file (a few GB), contains the data
<doc>
<a1>11111</a1>
<b1>22222</b1>
<c1>33333</c1>
</doc>
I want to transform into another XML
<doc2>
<f1>11111</f1>
<f2>33333</f2>
</doc2>
Is it possible to do with custom written program?
Thanks,