I'm trying to do a replace function on a string that contains HTML code, for example:
<TEXTFORMAT LEADING="2"><P ALIGN="CENTER"><FONT FACE="Arial" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">My Sample Text</FONT></P></TEXTFORMAT>
I'm trying to remove the formatting so I'm running the Replace command:
replace(Text, Find, Replace)
Unfortunately it won't let me use this because of the " characters in the string. In javascript I would just use single quotes around the string, or use backslashes in front of the " chars but Construct doesn't seem to allow either of these options. Is there a workaround for this?