1

通常,expect中的 switch case如下所示:

switch -- $count \
1 {
set type byte
} 2 {
set type word
} big {
set type array
} default {
puts "$count is not a valid type"
} 

我需要使用正则表达式运算符,例如 | 或 & - 我该怎么做?

以下示例不适用于期望代码:

switch -- $variable \
("a"|"b"|"c") {
              do something
}

("a"|"b"|"c") 表示 a 或 b 或 c,但它似乎不起作用。

如何在 switch 中使用此类语句或可能是 and 语句?

4

1 回答 1

4

使用-regexp命令的选项,并以 Tcl 方式支撑表达式。此外,您可以在所有开关周围使用大括号,这样您就不必使用续行。

switch -regexp -- $variable {
    {a|b|c} {
        do something
    }
    {^[def].*(?:g|h|i)} {
        do a different thing
    }
    default {
        do something else
    }
}

http://tcl.tk/man/tcl8.5/TclCmd/switch.htm
http://tcl.tk/man/tcl8.5/TclCmd/re_syntax.htm

于 2013-03-06T11:56:12.357 回答