I was expecting
if {[some_func $some_args]} {
....
}
to eval true and simply work as soon as some_func returns some string. However there are errors.
Learning it the hard way, Tcl accepts only the
- empty string -> False
- 0 -> False
- false -> False
- true -> True
- 1 -> True
To be precise:
% expr 1
1
% expr 0
0
% expr
wrong # args: should be "expr arg ?arg ...?"
% expr {{}}
% expr true
true
% expr false
false
% expr True
syntax error in expression "True": variable references require preceding $
% expr False
syntax error in expression "False": variable references require preceding $
It seems expr does not normalize it's return value. Note especially the empty string result if an empty string is given.
So how do I easily convert strings into booleans?