Suppose I have
<Start>
<abc>
...
..
</abc>
<qqq id = 1>
...
...
...
</qqq>
<qqq id = 2>
...
...
...
</qqq>
</Start>
Is it possible to create new element in this kind of XML so that it takes all <qqq>
's as child nodes ?
I.e, the final XML should look like this:
<Start>
<abc>
...
...
</abc>
<Begin name = myname>
<qqq id = 1>
...
...
...
</qqq>
<qqq id = 2>
...
...
...
</qqq>
</Begin>
</Start>