Quantcast
Viewing all articles
Browse latest Browse all 12583

How to reaplce XML node using XSLT

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.

Viewing all articles
Browse latest Browse all 12583

Trending Articles