Hi! I get a XML document containing (at some level in the doc): <XXX action=""> <old> old_data </old> </XXX> <XXX action=""> new_data </XXX>
… and I’d need to transform this into the following:
<XXX action=""> <old> old_data </old> new_data </XXX>
I’ve been looking into what XSLT can provide but it’s not very clear whether this is actually do-able or not… Any idea? Cheers! -e
|