snowingnow
Programmer
I have following code:
...
set PIDf105 "AAA"
set PIDf106 "BBB"
set PIDf107 "CCC"
set PIDf106_out $PIDf105\x7e$PIDf106\x7e$PIDf107
set msg [replaceHL7Field $msg PID 3 PIDf106_out]
I Like to see ||AAA~BBB~CCC||
But i return as ||AAA||
If i not use \x7e such as use >, it return correct format
||AAA>BBB>CCC||, but not the "~"
Any ideal/
...
set PIDf105 "AAA"
set PIDf106 "BBB"
set PIDf107 "CCC"
set PIDf106_out $PIDf105\x7e$PIDf106\x7e$PIDf107
set msg [replaceHL7Field $msg PID 3 PIDf106_out]
I Like to see ||AAA~BBB~CCC||
But i return as ||AAA||
If i not use \x7e such as use >, it return correct format
||AAA>BBB>CCC||, but not the "~"
Any ideal/