I have xml like this-
<x>
<y>
data 1 <HTML Tags>
</y>
</x>
I want to replace <y> node with <z> means I want output like this-
<x>
<Z>
</Z>
</x>
How to replace complete <Y> tag with <z> tag using XSLT.
Thanks in advance.
<x>
<y>
data 1 <HTML Tags>
</y>
</x>
I want to replace <y> node with <z> means I want output like this-
<x>
<Z>
</Z>
</x>
How to replace complete <Y> tag with <z> tag using XSLT.
Thanks in advance.