jimmy123j,
This seems to do the trick:
$sString_1 = "ABC12+ABC34-AB5>CD60=CD50"
$sString_2 = StringRegExpReplace($sString_1, "(\W)", " $1 ")
ConsoleWrite($sString_2 & @CRLF)
$sString_1 = "<TD> BKColor=#FF12BC TextColor=#ACF9F9 <span> ABC > ???? </span> > A15F </TD>"
$sString_2 = StringRegExpReplace($sString_1, "^(.*> >).*(</TD>)$", "$1 123456 $2")
ConsoleWrite($sString_2 & @CRLF)
Please ask if you have any questions.
M23