Hi, My issue with xml is, I have an xml like
<a>
<b>
<c>
<d1 att2="t1">test 1</d1>
<d1>test 2</d1>
<d1>test 3</d1>
<d1 att2="t1">test 4</d1>
</c>
</b>
</a>
I need to conver this xml to,
<a>
<b>
<c>
<d1 att2="t1">test 1</d1>
<d1 att2="t1">test 4</d1>
</c>
</b>
</a>
<a>
<b>
<c>
<d1>test 2</d1>
</c>
</b>
</a>
<a>
<b>
<c>
<d1>test 3</d1>
</c>
</b>
</a>