I am trying to use the regsub function to strip out the rtf formatting using the regular expression \w+|{.*?}
The above regular expression works fine in a test app I wrote using .NET, but not in TCL. Can anybody see why? My statement is below:
regsub -all \w+|{.*?} $OBX5 “” CleanOBX5
I get no value in the variable $CleanOBX5
Thanks,