I only see PHP solutions to this problem.
Basically I need to go from:
<TEXTFORMAT LEADING='2'><P ALIGN='LEFT'><FONT FACE='Verdana' style='font-size:10' COLOR='#0B333C'>My name's Mark</FONT></P></TEXTFORMAT>
to this:
<TEXTFORMAT LEADING="2"><P ALIGN="LEFT"><FONT FACE="Verdana" style="font-size:10" COLOR="#0B333C">My name's Mark</FONT></P></TEXTFORMAT>
Using ReReplaceNoCase but … yup you guessed it .. I suck at regular expressions! 🙂
Rather than use a regex, you can do what you need in this case by letting CF do the work for you, via XML parsing libraries:
Which will get back:
If that leading
<?xml...>annoys you, you can cut that part off: