i need to replace "
with ""
in full xml string.
i have this:
Dim mioxml As String = "< xml version = "1.0" encoding="UTF-8"> < orderid > Range < /orderid>< operation >RangeA2< /operation>< /order>"
mioxml = mioxml.Replace(""","""")
But on the firt line i have an error (Expected end of instruction)
So i think the problem is on the Dim
of mioxml.
Thank you