T
Terrence Chan
I have try the below and the problem is my xmlstring is something like
"<employee name="Joh"n">
strXML = Replace(strXML, "&", "&")
strXML = Replace(strXML, "<", "<")
strXML = Replace(strXML, ">", ">")
strXML = Replace(strXML, "'", "'")
strXML = Replace(strXML, """", """)
after this it will be like this
<employee name="Joh"n">
How to slove the double quote in xmlstring?
Thanks.
"<employee name="Joh"n">
strXML = Replace(strXML, "&", "&")
strXML = Replace(strXML, "<", "<")
strXML = Replace(strXML, ">", ">")
strXML = Replace(strXML, "'", "'")
strXML = Replace(strXML, """", """)
after this it will be like this
<employee name="Joh"n">
How to slove the double quote in xmlstring?
Thanks.