Posted to tcl by miguel at Tue May 31 13:19:58 GMT 2011view pretty

% set x {^" \"}
^" \"
% set y $x|foo       
^" \"|foo
% string match $x* $y
0
% string map [list $x {}] $y
|foo

Comments

Posted by miguel at Tue May 31 13:26:14 GMT 2011 [text] [code]

Just being stupid: \ is special in patterns ...