Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Replacing Ampersand in a string for XML
Message
From
16/10/2018 16:23:00
 
General information
Forum:
Visual FoxPro
Category:
XML, XSD
Miscellaneous
Thread ID:
01662605
Message ID:
01662623
Views:
43
Likes (1)
I use the following to convert a string to XML:
TRY
	oXDOM = CREATEOBJECT('MSXML2.DOMDocument')
CATCH TO loException
	oXDOM = .NULL.
ENDTRY
IF ISNULL(oXDOM)
	RETURN
ENDIF

loNodeText  = oXDOM.createTextNode(ALLTRIM(C_POAUDIT.AUDIT_DESC))
lcXMLString = loNodeText.xml
lcXMLString =  '<?xml version = "1.0" encoding="Windows-1252" standalone="yes"?><Changes>' + STRTRAN(lcXMLString, '"', '&quot;') + '</Changes>'
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform