With the VTD-XML parser how do I do below.
<root>
<A>
<B>
<c>1<c/>
<d>2<d/>
<e>3<e/>
</B>
<B>
<c>1<c/>
<d>2<d/>
<e>3<e/>
</B>
</A>
</root>
In the above xml how do I remove only nodes has tag name <B>
?
So my final out put should be
<root>
<A>
</A>
</root>