Friday, 6 February 2015

how to remove specific elements but not the text inside it using xslt



This is my Input xml



<para>
<a><b>this is a text</b></a>
</para>


this is my expected output



<para>
this is a text
</para>


how can i delete all the "a" tags and the "b" tags only and the text will not be affected using xslt thanks


No comments:

Post a Comment