Ani

Ani

  • 960
  • 680
  • 31.7k

Remove special characters from xml using xslt

May 5 2023 1:59 PM

Hi, 
I am have below input xml, I want to remove special characters from all nodes through xslt, please help me
<?xml version="1.0" encoding="UTF-8"?>
<data>
    <row id="tE9BC880F01DC4A7CA1B261A3BF04DBE8">
        <Title>Notice</Title>
        <Name>Abhi</Name>
        <Address>Janpath-Building 1 & 2, near Western Court, Janpath, New Delhi, Delhi-110001</Address>
        <Phone>98765-43210</Phone>
    </row>
    <row id="tE9BC880F01DC4A7CA1B261A3BF04DBE8">
        <Title>CancellationNotice</Title>
        <Name>O'Niel</Name>
        <Address>C-56, G Block BKC, Bandra Kurla Complex, Bandra East, Mumbai, Maharashtra 400098</Address>
        <Phone>98765-11221</Phone>
    </row>
</data>


Answers (4)