Hi friends,
My requirement is that, i recieve a xml file that may contain characters like "<" or ">".
for example like this
<?xml version="1.0" encoding="ISO-8859-1" ?>
<Incident>
<RecordDivision> abc>efg</RecordDivision>
<Incident>
now i want to replace the ">" character in the string abc>efg.
this is just a sample xml. i may recieve any type of xml.
So when i use some other methods i found by googling, they are replacing the xml tags characters "<" ,">" also.
My requirement is tags should not be replaced but the content should be.
Any idea?
i am using c#
Thanks