I am using XSL 1.0, I have this kind of XML-
<ID>"7080"</ID>
<NAME>"Media"</NAME>
<ADDRESS>
<STREET_1>"400 Street"</STREET_1>
</ADDRESS>
The values are coming with Double Quotes. I am trying to remove these double quotes in XSL 1.0 and show up my Result as:
<ID>7080</ID>
<NAME>Media</NAME>
<ADDRESS>
<STREET_1>400 Street</STREET_1>
</ADDRESS>
Also, I have tried it to apply translate function to the root element of the XML but it isn't working. Any suggestion would help!
You can use
translate
to replace the (escaped) double quote with an empty char.When used with the identity transform above and a shoutcase
XML
root element wrapper, this returns: