Would it be possible to extract just containers from xml and save it into XML ?
input XML :
<root>
<start1></start1>
<start2>get this</start2>
<start2>get this2</start2>
</root>
output xml :
<root2>
<start2>get this</start2>
<start2>get this2</start2>
</root2>


Reply With Quote