Is there any built-in solution in Lazarus for decode html entries like ", ' and etc.?Something like this:Code: Pascal [Select][+][-]s := '"hello" 'world'';s := decode_html(s);writeln(s); // "hello" 'world'Or I need to "reinvent the bicycle"?
FCL includes EscapeHtml and UnescapeHtml routines in fcl-xml/src/htmlelements.pp. They handle the common name entities you mentioned.