The string : |=^5.0|
This is OBX 5. The generating application adds the “=^” before the value that we need, “5.0”
I am using xltp
set xlateOutVals [string trimleft $xlateInVals “=^”]
The OutVal becomes |5.0^5.0|
The echo on $xlateInVals shows “= 5.0” *note the ^ is missing
when i echo $xlateOutVals shows ” 5.0″ *note a space where the ^ was
and the final result, in the message is |5.0^5.0| in OBX 5
Why is it giving me that output? I assume it has something to do with the component separator being a control character? What can I do to get around this?