Hi guys,
I've got an XMLPORT( Encoding: UTF-8) that needs to export an URL that contains an ampersand but the output data is converting the & symbol into this data
-->&
My attempts were:
Char1 := 38; URL := TextAA + FORMAT(Char1) + TextZZ
URL := TextAA + '&' + TextZZ
with the same result
<TextLine>TextAA&TextZZ</TextLine>
Any ideas?
Answers
An XML reader will convert it back and present it to the consumer correctly.
XML is not meant to be consumed by text utilities, but by an XML processor.
Check this out - http://xml.silmaril.ie/specials.html
Blog - rockwithnav.wordpress.com/
Twitter - https://twitter.com/RockwithNav
Facebook - https://facebook.com/rockwithnav/