M
Mark Tranchant
I'm struggling to find a way to achieve the following transformation:
<x a="1" b="2" c="3" ... />
into
<y b="2" c="3" ... > <z a="1" /> </y>
In other words, I want to pull out a specific attribute into one result
element (easy) and copy the remaining arbitrary list of elements into
another (help needed!).
Any experts care to point me into the right direction?
<x a="1" b="2" c="3" ... />
into
<y b="2" c="3" ... > <z a="1" /> </y>
In other words, I want to pull out a specific attribute into one result
element (easy) and copy the remaining arbitrary list of elements into
another (help needed!).
Any experts care to point me into the right direction?