How can I unescape HTML encoded characters (such as >
, <
, etc.) from a string, in Flex (AS3)?
So, I have a string "x > 3"
and I want the result string as "x > 3"
.
How can I unescape HTML encoded characters (such as >
, <
, etc.) from a string, in Flex (AS3)?
So, I have a string "x > 3"
and I want the result string as "x > 3"
.
Probably the easiest way is to just send it through a TextArea or other text based component. This will also strip off containing CDATA tags,