Table of Contents
The switch command allows you to
choose one of several options in your code. It is similar to
switch in C, except that it is more
flexible, because you can switch on strings, instead of just
integers. The string will be compared to a set of patterns, and
when a pattern matches the string, the code associated with that
pattern will be evaluated.
It's a good idea to use the switch
command when you want to match a variable against several possible
values, and don't want to do a long series of if... elseif
... elseif statements.
The syntax of the command is:
switch
string
pattern1
body1
?pattern2 body2? ...
?patternN bodyN?
- or -
switch
string
{ pattern1 body1 ?pattern2
body2?...?patternN bodyN? }
String is the string that you wish to
test, and pattern1, pattern2, etc are the
patterns that the string will be compared to. If string matches a pattern, then the code within the
body associated with that pattern will be
executed. The return value of the body
will be returned as the return value of the switch statement. Only
one pattern will be matched.
If the last pattern argument is the
string default, that pattern will
match any string. This guarantees that some set of code will be
executed no matter what the contents of string are.
If there is no default argument,
and none of the patterns match
string, then the switch command will return an empty string.
If you use the brace version of this command, there will be no substitutions done on the patterns. The body of the command, however, will be parsed and evaluated just like any other command, so there will be a pass of substitutions done on that, just as will be done in the first syntax. The advantage of the second form is that you can write multiple line commands more readably with the brackets.
Note that you can use braces to group the body argument when using the switch or if
commands. This is because these commands pass their body argument to the Tcl interpreter for evaluation.
This evaluation includes a pass of substitutions just as it does
for code not within a command body
argument.