I am getting xml string in request attribute in following format
<files> ;
<file>
<filename> ;somefile.ext&l t;/filename>
</file>
<files> ;
the above string I want to convert to tags.
expected output after xsl transformation -
<files>
<file>
<filename>somef ile.ext</filename>
</file>
<files>
<files> ;
<file>
<filename> ;somefile.ext&l t;/filename>
</file>
<files> ;
the above string I want to convert to tags.
expected output after xsl transformation -
<files>
<file>
<filename>somef ile.ext</filename>
</file>
<files>
Comment