layout: post title: TCL培训教程 categories:
toc {:toc}
作者: 陈旭盛
关键词: TCL
摘要: 本文是TCL教材的第三稿, 前两稿分别是《TCL的使用》和《TCL培训教程》. 这一稿加入了不少内容, 是北研TCL兴趣小组共同努力的结果. 本文详细介绍了TCL的各个方面, 特别对利用C\C++语言扩展TCL命令作了详细论述. 本文附有大量实例.
缩略语清单: TCL Tool Command Language 一种脚本语言
<table id='tab-0'><caption>参考资料清单</caption> <tr> <th rowspan="1" colspan="1" style="text-align:center;">名称</th> <th rowspan="1" colspan="1" style="text-align:center;">作者</th> <th rowspan="1" colspan="1" style="text-align:center;">编号</th> <th rowspan="1" colspan="1" style="text-align:center;">发布日期</th> <th rowspan="1" colspan="1" style="text-align:center;">查阅地点或渠道</th> <th rowspan="1" colspan="1" style="text-align:center;">出版单位</th> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">Tcl and Tk ToolKit</td> <td rowspan="1" colspan="1" style="text-align:center;">John K. Ousterhout</td> <td rowspan="1" colspan="1" style="text-align:center;">981-235-951-6</td> <td rowspan="1" colspan="1" style="text-align:center;">1999</td> <td rowspan="1" colspan="1" style="text-align:center;">自己的图书</td> <td rowspan="1" colspan="1" style="text-align:center;">Addison Wesley Publishing Commpany</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">TCL的使用</td> <td rowspan="1" colspan="1" style="text-align:center;">陈旭盛</td> <td rowspan="1" colspan="4" style="text-align:center;">自写文档</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">TCL培训教程</td> <td rowspan="1" colspan="1" style="text-align:center;">陈旭盛</td> <td rowspan="1" colspan="4" style="text-align:center;">自写文档</td> </tr> </table>TCL(Tool Command Language)是一种解释执行的脚本语言(Scripting Language). 它提供了通用的编程能力: 支持变量, 过程和控制结构; 同时TCL还拥有一个功能强大的固有的核心命令集.
由于TCL的解释器是用一个C\C++语言的过程库实现的, 因此在某种意义上我们又可以把TCL看作一个C库, 这个库中有丰富的用于扩展TCL命令的C\C++过程和函数, 可以很容易就在C\C++应用程序中嵌入TCL, 而且每个应用程序都可以根据自己的需要对TCL语言进行扩展. 我们可以针对某一特定应用领域对TCL语言的核心命令集进行扩展, 加入适合于自己的应用领域的扩展命令, 如果需要, 甚至可以加入新的控制结构, TCL解释器将把扩展命令和扩展控制结构与固有命令和固有控制结构同等看待. 扩展后的TCL语言将可以继承TCL 核心部分的所有功能, 包括核心命令, 控制结构, 数据类型, 对过程的支持等. 根据需要, 我们甚至可以屏蔽掉TCL的某些固有命令和固有控制结构. 通过对TCL的扩展, 继承或屏蔽, 用户用不着象平时定义一种计算机语言那样对词法, 语法, 语义, 语用等各方面加以定义, 就可以方便的为自己的应用领域提供一种功能完备的脚本语言.
TCL良好的可扩展性使得它能很好地适应产品测试的需要, 测试任务常常会由于设计和需求的改变而迅速改变, 往往让测试人员疲于应付. 利用TCL的可扩展性, 测试人员就可以迅速继承多种新技术, 并针对产品新特点迅速推出扩展TCL命令集, 以用于产品的测试中, 可以较容易跟上设计需求的变化.
另外, 因为TCL是一种比C\C++语言有着更高抽象层次的语言, 使用TCL可以在一种更高的层次上编写程序, 它屏蔽掉了编写C\C++程序时必须涉及到的一些较为烦琐的细节, 可以大大地提高开发测试例的速度. 而且, 使用TCL语言写的测试例脚本, 即使作了修改, 也用不着重新编译就可以调用TCL解释器直接执行. 可以省却不少时间. TCL目前已成为自动测试中事实上的标准.
简单的讲, TCL语言的语法实际上是一些TCL解释器怎样对TCL命令进行分析的规则的集合.
一个 TCL 脚本可以包含一个或多个命令. 命令之间必须用换行符或分号隔开, 下面的两个脚本都是合法的:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">set</span> a <span style="color: #666666">1</span> <span style="color: #AA22FF; font-weight: bold">set</span> b <span style="color: #666666">2</span> </pre></div>或
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">set</span> a <span style="color: #666666">1</span><span style="color: #AA22FF; font-weight: bold">;</span> <span style="color: #AA22FF; font-weight: bold">set</span> b <span style="color: #666666">2</span> </pre></div>TCL 的每一个命令包含一个或几个单词, 第一个单词代表命令名, 另外的单词则是这个命令的参数, 单词之间必须用空格或 TAB 键隔开.
TCL 解释器对一个命令的求值过程分为两部分: 分析和执行. 在分析阶段, TCL 解释器运用规则把命令分成一个个独立的单词, 同时进行必要的置换(substitution); 在执行阶段, TCL 解释器会把第一个单词当作命令名, 并查看这个命令是否有定义, 如果有定义就激活这个命令对应的 C/C++ 过程, 并把所有的单词作为参数传递给该命令过程, 让命令过程进行处理.
注: 在下面的所有章节的例子中, %
为 TCL 的命令提示符, 输入命令回车后, TCL 会在接着的一行输出命令执行结果. //
后面是我自己加上的说明, 不是例子的一部分.
TCL 解释器在分析命令时, 把所有的命令参数都当作字符串看待, 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> x <span style="color: #666666">10</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">定义变量</span> x<span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">并把</span> x <span style="border: 1px solid #FF0000">的值赋为</span><span style="color: #666666">10</span> <span style="color: #B8860B">10</span> <span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> y x<span style="color: #666666">+100</span> <span style="color: #666666">//</span>y<span style="border: 1px solid #FF0000">的值是</span> x<span style="color: #666666">+100</span><span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">而不是我们期望的</span> <span style="color: #666666">110</span> <span style="color: #B8860B">x</span><span style="color: #666666">+100</span> </pre></div>上例的第二个命令中, x
被看作字符串x+100
的一部分, 如果我们想使用x
的值10
, 就必须告诉 TCL 解释器: 我们在这里期望的是变量x
的值, 而非字符x
. 怎么告诉 TCL 解释器呢, 这就要用到 TCL 语言中提供的置换功能.
TCL 提供三种形式的置换: 变量置换, 命令置换和反斜杠置换. 每种置换都会导致一个或多个单词本身被其他的值所代替. 置换可以发生在包括命令名在内的每一个单词中, 而且置换可以嵌套.
变量置换由一个$
符号标记, 变量置换会导致变量的值插入一个单词中. 例如:
这时, y
的值还不是我们想要的值110
, 而是10+100
, 因为 TCL 解释器把10+100
看成是 一个字符串而不是表达式, y
要想得到值110
, 还必须用命令置换, 使得 TCL 会把10+100
看成一个表达式并求值.
命令置换是由[]
括起来的 TCL 命令及其参数, 命令置换会导致某一个命令的所有或部分单词被另一个命令的结果所代替. 例如:
y
的值是110
. 这里当 TCL 解释器遇到字符[
时, 它就会把随后的expr
作为一个命令名, 从而激活与expr
对应的 C/C++过程, 并把expr
和变量置换后得到的10+110
传递给该命令过程进行处理.
如果在上例中我们去掉[]
, 那么 TCL 会报错. 因为在正常情况下, TCL 解释器只把命令行中的第一个单词看作命令, 其他的单词都作为普通字符串处理, 看作是命令的参数.
注意, []
中必须是一个合法的 TCL 脚本, 长度不限. []
中脚本的值为最后一个命令的返回值, 例如:
有了命令置换, 实际上就表示命令之间是可以嵌套的, 即一个命令的结果可以作为别的命令的参数.
TCL 语言中的反斜杠置换类似于 C 语言中反斜杠的用法, 主要用于在单词符号中插入诸如换行符, 空格, [
, $
等被 TCL 解释器当作特殊符号对待的字符. 例如:
如果没有\
的话, TCL 会报错, 因为解释器会把这里最后两个单词之间的空格认为是分隔符, 于是发现set
命令有多于两个参数, 从而报错. 加入了\
后, 空格不被当作分隔符, multiple space
被认为是一个单词(word). 又例如:
这里的$
不再被当作变量置换符.
TCL 支持以下的反斜杠置换:
<table id='tab-1'><caption></caption> <tr> <th rowspan="1" colspan="1" style="text-align:center;">转义序列</th> <th rowspan="1" colspan="1" style="text-align:center;">替换为</th> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\a</td> <td rowspan="1" colspan="1" style="text-align:center;">Audible alert (0x7)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\b</td> <td rowspan="1" colspan="1" style="text-align:center;">Backspace (0x8)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\f</td> <td rowspan="1" colspan="1" style="text-align:center;">Form feed (0xc)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\n</td> <td rowspan="1" colspan="1" style="text-align:center;">Newline (0xa)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\r</td> <td rowspan="1" colspan="1" style="text-align:center;">Carriage return (0xd)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\t</td> <td rowspan="1" colspan="1" style="text-align:center;">Tab (0x9)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\v</td> <td rowspan="1" colspan="1" style="text-align:center;">Vertical tab (0xb)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\ddd</td> <td rowspan="1" colspan="1" style="text-align:center;">Octal value given by ddd (one, two, or three d's)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\xhh</td> <td rowspan="1" colspan="1" style="text-align:center;">Hex value given by hh (any number of h's)</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\newline space</td> <td rowspan="1" colspan="1" style="text-align:center;">A single space character</td> </tr> </table>例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> a <span style="border: 1px solid #FF0000">\</span>x48 <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">对应</span> <span style="border: 1px solid #FF0000">\</span>xhh <span style="color: #B8860B">H</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">十六进制的</span> <span style="color: #666666">48</span> <span style="border: 1px solid #FF0000">正好是</span> <span style="color: #666666">72</span><span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">对应</span> H <span style="color: #666666">%</span> <span style="color: #AA22FF; font-weight: bold">set</span> a <span style="border: 1px solid #FF0000">\</span><span style="color: #666666">110</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">对应</span> <span style="border: 1px solid #FF0000">\</span>ddd <span style="color: #B8860B">H</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">八进制的</span> <span style="color: #666666">110</span> <span style="border: 1px solid #FF0000">正好是</span> <span style="color: #666666">72</span><span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">对应</span> H <span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> a expr <span style="border: 1px solid #FF0000">\</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">对应\</span>newline space<span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">一个命令可以用</span> <span style="border: 1px solid #FF0000">\</span>newline <span style="border: 1px solid #FF0000">转到下一行继续</span> <span style="color: #B8860B">2</span><span style="color: #666666">+3</span><span style="border: 1px solid #FF0000">]</span> <span style="color: #B8860B">5</span> </pre></div>除了使用反斜杠外, TCL 提供另外两种方法来使得解释器把分隔符和置换符等特殊字符当作普通字符, 而不作特殊处理, 这就要使用双引号"
和花括号{}
.
TCL 解释器对双引号中的各种分隔符将不作处理, 但是对换行符及$
和[]
两种置换符会照常处理. 例如:
而在花括号中, 所有特殊字符都将成为普通字符, 失去其特殊意义, TCL 解释器不会对其作特殊处理.
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> y <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #666666">/</span><span style="color: #B8860B">n$x</span> <span style="color: #AA22FF; font-weight: bold">[expr</span> <span style="color: #666666">10+100</span><span style="color: #AA22FF; font-weight: bold">]}</span> <span style="color: #666666">/</span><span style="color: #B8860B">n$x</span> <span style="color: #AA22FF; font-weight: bold">[expr</span> <span style="color: #666666">10+100</span><span style="color: #AA22FF; font-weight: bold">]</span> </pre></div>TCL 中的注释符是#
, #
和直到所在行结尾的所有字符都被 TCL 看作注释, TCL 解释器对注释将不作任何处理. 不过, 要注意的是, #
必须出现在 TCL 解释器期望命令的第一个字符出现的地方, 才被当作注释.
例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #008800; font-style: italic">#This is a comment</span> <span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> a <span style="color: #666666">100</span> <span style="border: 1px solid #FF0000">#</span> Not a comment <span style="color: #B8860B">wrong</span> <span style="border: 1px solid #FF0000">#</span> args: should be <span style="color: #BB4444">"set varName ?newValue?"</span> <span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> b <span style="color: #666666">101</span> <span style="color: #AA22FF; font-weight: bold">;</span> <span style="color: #008800; font-style: italic"># this is a comment</span> <span style="color: #B8860B">101</span> </pre></div>第二行中#
就不被当作注释符, 因为它出现在命令的中间, TCL 解释器把它和后面的字符当作命令的参数处理, 从而导致错误. 而第四行的#
就被作为注释, 因为前一个命令已经用一个分号结束, TCL 解释器期望下一个命令接着出现. 现在在这个位置出现#
, 随后的字符就被当作注释了.
一个 TCL 的简单变量包含两个部分: 名字和值. 名字和值都可以是任意字符串. 例如一个名为1323 7&*: hdgg
的变量在 TCL 中都是合法的. 不过为了更好的使用置换(substitution), 变量名最好按 C\C++ 语言中标识符的命名规则命名. TCL 解释器在分析一个变量置换时, 只把从$
符号往后直到第一个不是字母, 数字或下划线的字符之间的单词符号作为要被置换的变量的名字. 例如:
在最后一个命令行, 我们希望把变量a.1
的值付给b
, 但是 TCL 解释器在分析时只把$
符号之后直到第一个不是字母, 数字或下划线的字符(这里是.
)之间的单词符号(这里是a
)当作要被置换的变量的名字, 所以 TCL 解释器把a
置换成2
,然后把字符串2.1
付给变量b
. 这显然与我们的初衷不同.
当然, 如果变量名中有不是字母, 数字或下划线的字符, 又要用置换, 可以用花括号把变量名括起来. 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> b <span style="border: 1px solid #FF0000">$</span><span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a.1</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #B8860B">4</span> </pre></div>TCL 中的set
命令能生成一个变量, 也能读取或改变一个变量的值. 例如:
如果变量a
还没有定义, 这个命令将生成变量a
, 并将其值置为kdfj kjdf
, 若a
已定义, 就简单的把a
的值置为kdfj kjdf
.
这个只有一个参数的set
命令读取a
的当前值kdfj kjdf
.
数组是一些元素的集合. TCL 的数组和普通计算机语言中的数组有很大的区别. 在 TCL 中, 不能单独声明一个数组, 数组只能和数组元素一起声明. 数组中, 数组元素的名字包含两部分: 数组名和数组中元素的名字, TCL 中数组元素的名字(下标〕可以为任何字符串. 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">set</span> day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">1</span> <span style="color: #AA22FF; font-weight: bold">set</span> day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">tuesday</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">2</span> </pre></div>第一个命令生成一个名为day
的数组, 同时在数组中生成一个名为monday
的数组元素, 并把值置为1
, 第二个命令生成一个名为tuesday
的数组元素, 并把值置为2
.
简单变量的置换已经在前一节讨论过, 这里讲一下数组元素的置换. 除了有括号之外, 数组元素的置换和简单变量类似. 例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">set</span> a monday <span style="color: #AA22FF; font-weight: bold">set</span> day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">1</span> <span style="color: #AA22FF; font-weight: bold">set</span> b <span style="color: #B8860B">$day</span><span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">//</span>b <span style="border: 1px solid #FF0000">的值为</span> <span style="color: #666666">1</span><span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">即</span> day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span><span style="border: 1px solid #FF0000">的值</span>. <span style="color: #AA22FF; font-weight: bold">set</span> c <span style="color: #B8860B">$day</span><span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">$a</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">//</span>c <span style="border: 1px solid #FF0000">的值为</span> <span style="color: #666666">1</span><span style="border: 1px solid #FF0000">,</span> <span style="border: 1px solid #FF0000">即</span> day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span><span style="border: 1px solid #FF0000">的值</span>. </pre></div>TCL 不能支持复杂的数据类型, 这是一个很大的缺憾, 也是 TCL 受指责很多的方面. 但是 TCL的一个扩展 ITCL 填补了这个缺憾.
set
这个命令在 3.1 已有详细介绍.
unset
这个命令从解释器中删除变量, 它后面可以有任意多个参数, 每个参数是一个变量名, 可以是简单变量, 也可以是数组或数组元素. 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF; font-weight: bold">unset</span> a b day<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">monday</span><span style="color: #AA22FF; font-weight: bold">)</span> </pre></div>上面的语句中删除了变量a
, b
和数组元素day(monday)
, 但是数组day
并没有删除, 其他元素还存在, 要删除整个数组, 只需给出数组的名字. 例如:
append
和incr
这两个命令提供了改变变量的值的简单手段. append
命令把文本加到一个变量的后面, 例如:
incr
命令把一个变量值加上一个整数. incr
要求变量原来的值和新加的值都必须是整数.
TCL 表达式的操作数通常是整数或实数. 整数一般是十进制的, 但如果整数的第一个字符是0
(零), 那么 TCL 将把这个整数看作八进制的, 如果前两个字符是0x
则这个整数被看作是十六进制的. TCL 的实数的写法与 ANSI C 中完全一样. 如:
下面的表格中列出了 TCL 中用到的运算符, 它们的语法形式和用法跟 ANSI C 中很相似. 这里就不一一介绍. 下表中的运算符是按优先级从高到低往下排列的. 同一格中的运算符优先级相同.
<table id='tab-2'><caption></caption> <tr> <th rowspan="1" colspan="1" style="text-align:center;">语法形式</th> <th rowspan="1" colspan="1" style="text-align:center;">结果</th> <th rowspan="1" colspan="1" style="text-align:center;">操作数类型</th> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">-a</td> <td rowspan="1" colspan="1" style="text-align:center;">负a</td> <td rowspan="1" colspan="1" style="text-align:center;">整型, 浮点型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">!a</td> <td rowspan="2" colspan="1" style="text-align:center;">非a</td> <td rowspan="1" colspan="1" style="text-align:center;">整型, 浮点型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">~a</td> <td rowspan="1" colspan="1" style="text-align:center;">整型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a*b</td> <td rowspan="1" colspan="1" style="text-align:center;">乘</td> <td rowspan="2" colspan="1" style="text-align:center;">整型, 浮点型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a/b</td> <td rowspan="1" colspan="1" style="text-align:center;">除</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a%b</td> <td rowspan="1" colspan="1" style="text-align:center;">取模</td> <td rowspan="1" colspan="1" style="text-align:center;">整型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a+b</td> <td rowspan="1" colspan="1" style="text-align:center;">加</td> <td rowspan="2" colspan="1" style="text-align:center;">整型, 浮点型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a-b</td> <td rowspan="1" colspan="1" style="text-align:center;">减</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a<<b</td> <td rowspan="1" colspan="1" style="text-align:center;">左移位</td> <td rowspan="2" colspan="1" style="text-align:right;">整型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a>>b</td> <td rowspan="1" colspan="1" style="text-align:center;">右移位</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a<b</td> <td rowspan="1" colspan="1" style="text-align:center;">小于</td> <td rowspan="6" colspan="1" style="text-align:center;">整型, 浮点型,字符</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a>b</td> <td rowspan="1" colspan="1" style="text-align:center;">大于</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a<=b</td> <td rowspan="1" colspan="1" style="text-align:center;">小于等于</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a>=b</td> <td rowspan="1" colspan="1" style="text-align:center;">大于等于</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a==b</td> <td rowspan="1" colspan="1" style="text-align:center;">等于</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a!=b</td> <td rowspan="1" colspan="1" style="text-align:center;">不等于</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a&b</td> <td rowspan="1" colspan="1" style="text-align:center;">位操作与</td> <td rowspan="3" colspan="1" style="text-align:center;">整型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a^b</td> <td rowspan="1" colspan="1" style="text-align:center;">位操作异或</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a|b</td> <td rowspan="1" colspan="1" style="text-align:center;">位操作或</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a&&b</td> <td rowspan="1" colspan="1" style="text-align:center;">逻辑与</td> <td rowspan="2" colspan="1" style="text-align:center;">整型, 浮点型</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a||b</td> <td rowspan="1" colspan="1" style="text-align:center;">逻辑或</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">a?b:c</td> <td rowspan="1" colspan="1" style="text-align:center;">选择运算</td> <td rowspan="1" colspan="1" style="text-align:center;">a为整型, 浮点型</td> </tr> </table>TCL 支持常用的数学函数, 表达式中数学函数的写法类似于 C\C++ 语言的写法, 数学函数的参数可以是任意表达式, 多个参数之间用逗号隔开. 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> x <span style="color: #666666">2</span> <span style="color: #B8860B">2</span> <span style="color: #666666">%</span> <span style="color: #AA22FF; font-weight: bold">expr</span> <span style="color: #666666">2*</span> sin<span style="color: #AA22FF; font-weight: bold">(</span><span style="color: #B8860B">$x</span><span style="color: #666666"><</span><span style="color: #B8860B">3</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #B8860B">1.68294196962</span> </pre></div>其中expr
是 TCL 的一个命令, 语法为: expr arg ?arg ...?
两个?
之间的参数表示可省, 后面介绍命令时对于可省参数都使用这种表示形式. expr
可以有一个或多个参数, 它把所有的参数组合到一起, 作为一个表达式, 然后求值:
需要注意的一点是, 数学函数并不是命令, 只在表达式中出现才有意义.
TCL 中支持的数学函数如下
<table id='tab-3'><caption></caption> <tr> <td rowspan="1" colspan="1" style="text-align:center;">abs(x)</td> <td rowspan="1" colspan="1" style="text-align:center;">绝对值</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">acos(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">反余弦函数, 返回值范围: [0, π]</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">asin(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">反正弦, 返回值范围: [-π/2, π/2]</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">atan(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">反正切, 返回值范围: [-π/2, π/2]</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">atan2(y, x)</td> <td rowspan="1" colspan="1" style="text-align:left;">y/x的反正切, 返回值范围: [-π/2, π/2]</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">ceil(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Smallest integer not less than x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">cos(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Cosine of x (x in radians).</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">cosh(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Hyperbolic cosine of x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">double(i)</td> <td rowspan="1" colspan="1" style="text-align:left;">Real value equal to integer i.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">exp(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">e raised to the power x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">floor(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Largest integer not greater than x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">fmod(x, y)</td> <td rowspan="1" colspan="1" style="text-align:left;">Floating-point remainder of x divided by y.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">hypot(x, y)</td> <td rowspan="1" colspan="1" style="text-align:left;">Square root of (x^2 + y^2).</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">int(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Integer value produced by truncating x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">log(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Natural logarithm of x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">log10(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Base 10 logarithm of x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">pow(x, y)</td> <td rowspan="1" colspan="1" style="text-align:left;">x raised to the power y.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">round(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Integer value produced by rounding x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">sin(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Sine of x (x in radians).</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">sinh(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Hyperbolic sine of x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">sqrt(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Square root of x.</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">tan(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Tangent of x (x in radians).</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">tanh(x)</td> <td rowspan="1" colspan="1" style="text-align:left;">Hyperbolic tangent of x.</td> </tr> </table>TCL 中有很多命令都以表达式作为参数. 最典型的是expr
命令. 另外if
, while
, for
等循环控制命令的循环控制中也都使用表达式作为参数.
list这个概念在 TCL 中是用来表示集合的. TCL 中list是由一堆元素组成的有序集合, list可以嵌套定义, list 每个元素可以是任意字符串, 也可以是list. 下面都是 TCL 中的合法的list:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">空</span> <span style="color: #AA22FF">list</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a</span> b c d<span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">b</span> c<span style="color: #AA22FF; font-weight: bold">}</span> d<span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">//</span><span style="color: #AA22FF">list</span> <span style="border: 1px solid #FF0000">可以嵌套</span> </pre></div>list 是 TCL 中比较重要的一种数据结构, 对于编写复杂的脚本有很大的帮助, TCL 提供了很多基本命令对list进行操作, 下面一一介绍.
list
命令语法: list ? value value...?
这个命令生成一个list, list的元素就是所有的value
.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">list</span> <span style="color: #666666">1</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>concat
命令语法: concat list ?list...?
这个命令把多个 list 合成一个 list, 每个 list 变成新 list 的一个元素.
lindex
命令语法: lindex list index
返回 list 的第index
个(0-based)元素.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">lindex</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #666666">2</span> <span style="color: #B8860B">3</span> <span style="color: #666666">4</span> </pre></div>llength
命令语法: llength list
返回 list 的元素个数.
例
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">llength</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #B8860B">3</span> </pre></div>linsert
命令语法: linsert list index value ?value...?
返回一个新串, 新串是把所有的value
参数值插入 list 的第index
个(0-based)元素之前得到.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">linsert</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #666666">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">9</span> <span style="color: #666666">10</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">9</span> <span style="color: #666666">10</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>lreplace
命令语法: lreplace list first last ?value value ...?
返回一个新串, 新串是把 list 的第first
(0-based)到第last
个(0-based)元素用所有的value
参数替换得到的. 如果没有value
参数, 就表示删除第first
到第last
个元素.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">lreplace</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">9</span> <span style="color: #666666">10</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #666666">3</span> <span style="color: #666666">3</span> <span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">lreplace</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">3</span> <span style="color: #666666">4</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #666666">4</span> <span style="color: #666666">4</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span> <span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #666666">2</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span> </pre></div>lrange
命令语法: lrange list first last
返回 list 的第first
(0-based)到第last
(0-based)元素组成的串,如果last
的值是end
, 就是从第first
个直到串的最后.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">lrange</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">1</span> <span style="color: #666666">7</span> <span style="color: #666666">8</span> <span style="color: #666666">2</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">3</span> end <span style="color: #B8860B">2</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span> </pre></div>lappend
命令语法: lappend varname value ?value...?
把每个value
的值作为一个元素附加到变量varname
后面, 并返回变量的新值, 如果varname
不存在, 就生成这个变量.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">lappend</span> a <span style="color: #666666">1</span> <span style="color: #666666">2</span> <span style="color: #666666">3</span> <span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #666666">3</span> <span style="color: #666666">%</span> <span style="color: #AA22FF; font-weight: bold">set</span> a <span style="color: #B8860B">1</span> <span style="color: #666666">2</span> <span style="color: #666666">3</span> </pre></div>lsearch
命令语法: lsearch ?-exact? ?-glob? ?-regexp? list pattern
返回 list 中第一个匹配模式pattern
的元素的索引, 如果找不到匹配就返回-1. -exact
, -glob
, -regexp
是三种模式匹配的技术. -exact
表示精确匹配; -glob
的匹配方式和string match
命令的匹配方式相同, 将在后面第八节介绍 string 命令时介绍; -regexp
表示正规表达式匹配, 将在第八节介绍regexp
命令时介绍. 缺省时使用-glob
匹配.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF; font-weight: bold">set</span> a <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #B8860B">how</span> are you <span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #B8860B">how</span> are you <span style="color: #666666">%</span> <span style="color: #AA22FF">lsearch</span> <span style="color: #B8860B">$a</span> y<span style="color: #666666">*</span> <span style="color: #B8860B">2</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">lsearch</span> <span style="color: #B8860B">$a</span> y<span style="color: #666666">?</span> <span style="color: #B8860B">-1</span> </pre></div>lsort
命令语法: lsort ?options? list
这个命令返回把 list 排序后的串. options
可以是如下值:
-ascii
: 按 ASCII 字符的顺序排序比较. 这是缺省情况.-dictionary
: 按字典排序, 与-ascii
不同的地方是:
如果元素中有数字的话, 数字被当作整数来排序.
因此: bigBoy
排在bigbang
和bigboy
之间, x10y
排在x9y
和x11y
之间.
-integer
: 把 list 的元素转换成整数, 按整数排序.
-real
: 把 list 的元素转换成浮点数, 按浮点数排序.-increasing
: 升序(按 ASCII 字符比较)-decreasing
: 降序(按 ASCII 字符比较)-command command
: TCL 自动利用command
命令把每两个元素一一比较, 然后给出排序结果.split
命令语法: split string ?splitChars?
把字符串string
按分隔符splitChars
分成一个个单词, 返回由这些单词组成的串. 如果splitChars
是一个空字符{}
, string
被按字符分开. 如果splitChars
没有给出, 以空格为分隔符.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">split</span> <span style="color: #BB4444">"how.are.you"</span> . <span style="color: #B8860B">how</span> are you <span style="color: #666666">%</span> <span style="color: #AA22FF">split</span> <span style="color: #BB4444">"how are you"</span> <span style="color: #B8860B">how</span> are you <span style="color: #666666">%</span> <span style="color: #AA22FF">split</span> <span style="color: #BB4444">"how are you"</span> <span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #B8860B">h</span> o w <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">}</span> a r e <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">}</span> y o u </pre></div>join
命令语法: join list ?joinString?
join
命令是split
命令的逆. 这个命令把 list 的所有元素合并到一个字符串中, 中间以joinString
分开. 缺省的joinString
是空格.
例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">join</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">h</span> o w <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">}</span> a r e <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">}</span> y o u<span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #B8860B">how</span> are you <span style="color: #666666">%</span> <span style="color: #AA22FF">join</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">how</span> are you<span style="color: #AA22FF; font-weight: bold">}</span> . <span style="color: #B8860B">how.are.you</span> </pre></div>TCL 中的控制流和 C 语言类似, 包括if
, while
, for
, foreach
, switch
, break
, continue
等命令. 下面分别介绍.
if
命令语法: if test1 body1 ?elseif test2 body2 elseif.... ? ?else bodyn?
TCL 先把test1
当作一个表达式求值, 如果值非0, 则把body1
当作一个脚本执行并返回所得值, 否则把test2
当作一个表达式求值, 如果值非0, 则把body2
当作一个脚本执行并返回所得值……. 例如:
注意, 上例中 {
一定要写在上一行, 因为如果不这样, TCL 解释器会认为if
命令在换行符处已结束, 下一行会被当成新的命令, 从而导致错误的结果. 在下面的循环命令的书写中也要注意这个问题. 书写中还要注意的一个问题是 if
和{
之间应该有一个空格, 否则 TCL 解释器会把if{
作为一个整体当作一个命令名, 从而导致错误.
while
, for
, foreach
while
命令语法: while test body
参数test
是一个表达式, body
是一个脚本, 如果表达式的值非0
, 就运行脚本, 直到表达式为0
才停止循环, 此时while
命令中断并返回一个空字符串.
例如:
假设变量a
是一个链表, 下面的脚本把a
的值复制到b
:
for
命令语法: for init test reinit body
参数init
是一个初始化脚本, 第二个参数test
是一个表达式, 用来决定循环什么时候中断, 第三个参数reinit
是一个重新初始化的脚本, 第四个参数body
也是脚本, 代表循环体. 下例与上例作用相同:
foreach
命令这个命令有两种语法形式
foreach varName list body
第一个参数varName
是一个变量, 第二个参数list
是一个表(有序集合), 第三个参数body
是循环体. 每次取得链表的一个元素, 都会执行循环体一次. 下例与上例作用相同:
foreach varlist1 list1 ?varlist2 list2 ...? Body
这种形式包含了第一种形式. 第一个参数varlist1
是一个循环变量列表, 第二个参数是一个列表list1
, varlist1
中的变量会分别取list1
中的值. body
参数是循环体. ?varlist2 list2 ...?
表示可以有多个变量列表和列表对出现. 例如:
这时总共有三次循环, x
的值为b a d c f e
.
这时总共有四次循环, x
的值为a d b e c f {} g
.
这时总共有三次循环, x
的值为a d e b f g c {} {}
.
break
和continue
命令在循环体中, 可以用break
和continue
命令中断循环. 其中break
命令结束整个循环过程, 并从循环中跳出, continue
只是结束本次循环.
switch
命令和 C 语言中switch
语句一样, TCL 中的switch
命令也可以由if
命令实现. 只是书写起来较为烦琐.
switch
命令的语法为: switch ? options? string { pattern body ? pattern body ...?}
第一个是可选参数options
, 表示进行匹配的方式. TCL 支持三种匹配方式: -exact
方式, -glob
方式, -regexp
方式, 缺省情况表示-glob
方式. -exact
方式表示的是精确匹配, -glob
方式的匹配方式和string match
命令的匹配方式相同(第八节介绍), -regexp
方式是正规表达式的匹配方式(第八节介绍). 第二个参数string
是要被用来作测试的值, 第三个参数是括起来的一个或多个元素对, 例:
其中a
的后面跟一个-
表示使用和下一个模式相同的脚本. default
表示匹配任意值. 一旦switch
命令找到一个模式匹配, 就执行相应的脚本, 并返回脚本的值, 作为switch
命令的返回值.
eval
命令eval
命令是一个用来构造和执行 TCL 脚本的命令, 其语法为:
eval arg ?arg ...?
它可以接收一个或多个参数, 然后把所有的参数以空格隔开组合到一起成为一个脚本, 然后对这个脚本进行求值. 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">eval</span> set a <span style="color: #666666">2</span> <span style="color: #AA22FF; font-weight: bold">;set</span> b <span style="color: #666666">4</span> <span style="color: #B8860B">4</span> </pre></div>source
命令source
命令读一个文件并把这个文件的内容作为一个脚本进行求值. 例如:
注意路径的描述应该和 UNIX 相同, 使用/
而不是\
.
TCL 支持过程的定义和调用, 在 TCL 中, 过程可以看作是用 TCL 脚本实现的命令, 效果与 TCL 的固有命令相似. 我们可以在任何时候使用proc
命令定义自己的过程, TCL 中的过程类似于 C 中的函数.
TCL 中过程是由proc
命令产生的. 例如:
proc
命令的第一个参数是你要定义的过程的名字, 第二个参数是过程的参数列表, 参数之间用空格隔开, 第三个参数是一个 TCL 脚本, 代表过程体. proc
生成一个新的命令, 可以象固有命令一样调用:
在定义过程时, 你可以利用return
命令在任何地方返回你想要的值. return
命令迅速中断过程, 并把它的参数作为过程的结果. 例如:
过程的返回值是过程体中最后执行的那条命令的返回值.
对于在过程中定义的变量, 因为它们只能在过程中被访问, 并且当过程退出时会被自动删除, 所以称为局部变量; 在所有过程之外定义的变量我们称之为全局变量. TCL 中, 局部变量和全局变量可以同名, 两者的作用域的交集为空: 局部变量的作用域是它所在的过程的内部; 全局变量的作用域则不包括所有过程的内部. 这一点和 C 语言有很大的不同.
如果我们想在过程内部引用一个全局变量的值, 可以使用global
命令. 例如:
全局变量a
在过程中被访问. 在过程中对a
的改变会直接反映到全局上. 如果去掉语句global a
, TCL 会出错, 因为它不认识变量a
.
TCL 还提供三种特殊的参数形式:
首先, 你可以定义一个没有参数的过程, 例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">proc</span> add <span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">expr</span> <span style="color: #666666">2+3</span> <span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>其次, 可以定义具有缺省参数值的过程, 我们可以为过程的部分或全部参数提供缺省值, 如果调用过程时未提供那些参数的值, 那么过程会自动使用缺省值赋给相应的参数. 和 C\C++中具有缺省参数值的函数一样, 有缺省值的参数只能位于参数列表的后部, 即在第一个具有缺省值的参数后面的所有参数, 都只能是具有缺省值的参数.
例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">proc</span> add <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">val1</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">val2</span> <span style="color: #666666">2</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">val3</span> <span style="color: #666666">3</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">expr</span> <span style="color: #B8860B">$val1</span><span style="color: #666666">+</span><span style="color: #B8860B">$val2</span><span style="color: #666666">+</span><span style="color: #B8860B">$val3</span> <span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>则:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #B8860B">add</span> <span style="color: #666666">1</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">值为</span> <span style="color: #666666">6</span> <span style="color: #B8860B">add</span> <span style="color: #666666">2</span> <span style="color: #666666">20</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">值为</span> <span style="color: #666666">25</span> <span style="color: #B8860B">add</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">值为</span> <span style="color: #666666">15</span> </pre></div>另外, TCL 的过程定义还支持可变个数的参数, 如果过程的最后一个参数是args
, 那么就表示这个过程支持可变个数的参数调用. 调用时, 位于args
以前的参数像普通参数一样处理, 但任何附加的参数都需要在过程体中作特殊处理, 过程的局部变量args
将会被设置为一个列表, 其元素就是所有附加的变量. 如果没有附加的变量, args
就设置成一个空串, 下面是一个例子:
则:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #B8860B">add</span> <span style="color: #666666">2</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">值为</span> <span style="color: #666666">2</span> <span style="color: #B8860B">add</span> <span style="color: #666666">2</span> <span style="color: #666666">3</span> <span style="color: #666666">4</span> <span style="color: #666666">5</span> <span style="color: #666666">6</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">值为</span> <span style="color: #666666">20</span> </pre></div>upvar
命令语法: upvar ?level? otherVar myVar ?otherVar myVar ...?
upvar
命令使得用户可以在过程中对全局变量或其他过程中的局部变量进行访问. upvar
命令的第一个参数otherVar
是我们希望以引用方式访问的参数的名字, 第二个参数myVar
是这个程中的局部变量的名字, 一旦使用了upvar
命令把otherVar
和myVar
绑定, 那么在过程中对局部变量myVar
的读写就相当于对这个过程的调用者中otherVar
所代表的局部变量的读写. 下面是一个例子:
则:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #B8860B">myexp</span> <span style="color: #666666">7</span> <span style="color: #B8860B">13</span> </pre></div>这个例子中, upvar
把$arg
(实际上是过程myexp
中的变量a
)和过程temp
中的变量b
绑定, 对b
的读写就相当于对a
的读写.
upvar
命令语法中的level
参数表示: 调用upvar
命令的过程相对于我们希望引用的变量myVar
在调用栈中相对位置. 例如:
这个命令使得当前过程的调用者的调用者中的变量other
, 可以在当前过程中利用x
访问. 缺省情况下, level
的值为1
, 即当前过程(上例中的temp
)的调用者(上例中的myexp
)中的变量(上例中myexp
的a
)可以在当前过程中利用局部变量(上例中temp
的b
)访问.
如果要访问全局变量可以这样写:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">upvar</span> <span style="border: 1px solid #FF0000">#</span><span style="color: #666666">0</span> other x </pre></div>那么, 不管当前过程处于调用栈中的什么位置, 都可以在当前过程中利用x
访问全局变量other
.
因为 TCL 把所有的输入都当作字符串看待, 所以 TCL 提供了较强的字符串操作功能, TCL 中与字符串操作有关的命令有: string
, format
, regexp
, regsub
, scan
等.
format
命令语法: format formatstring ?vlue value...?
format
命令类似于 ANSIC 中的sprintf
函数和 MFC 中CString
类提供的Format
成员函数. 它按formatstring
提供的格式, 把各个value
的值组合到formatstring
中形成一个新字符串, 并返回. 例如:
scan
命令语法: scan string format varName ?varName ...?
scan
命令可以认为是format
命令的逆, 其功能类似于 ANSI C 中的scanf
函数. 它按format
提供的格式分析string
字符串, 然后把结果存到变量varName
中,注意除了空格和 TAB 键之外, string
和format
中的字符和%
必须匹配. 例如:
scan
命令的返回值是匹配的变量个数. 而且, 我们发现, 如果变量varName
不存在的话, TCL 会自动声明该变量.
regexp
命令语法: regexp ?switchs? ?--? exp string ?matchVar?\ ?subMatchVar subMatchVar...?
regexp
命令用于判断正规表达式exp
是否全部或部分匹配字符串string
, 匹配返回1
, 否则0
.
在正规表达式中, 一些字符具有特殊的含义, 下表一一列出, 并给予了解释.
<table id='tab-4'><caption></caption> <tr> <th rowspan="1" colspan="1" style="text-align:center;">字符</th> <th rowspan="1" colspan="1" style="text-align:center;">意义</th> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">.</td> <td rowspan="1" colspan="1" style="text-align:left;">匹配任意单个字符</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">^</td> <td rowspan="1" colspan="1" style="text-align:left;">表示从头进行匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">$</td> <td rowspan="1" colspan="1" style="text-align:left;">表示从末尾进行匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">\x</td> <td rowspan="1" colspan="1" style="text-align:left;">匹配字符x, 这可以抑制字符x的含义</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">[chars]</td> <td rowspan="1" colspan="1" style="text-align:left;">匹配字符集合chars中给出的任意字符, 如果chars中的第一个字符是^, 表示匹配任意不在chars中的字符, chars的表示方法支持a-z之类的表示</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">(regexp)</td> <td rowspan="1" colspan="1" style="text-align:left;">把regexp作为一个单项进行匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">*</td> <td rowspan="1" colspan="1" style="text-align:left;">对*前面的项0进行次或多次匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">+</td> <td rowspan="1" colspan="1" style="text-align:left;">对+前面的项进行1次或多次匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">?</td> <td rowspan="1" colspan="1" style="text-align:left;">对?前面的项进行0次或1次匹配</td> </tr> <tr> <td rowspan="1" colspan="1" style="text-align:center;">regexp1|regexp2</td> <td rowspan="1" colspan="1" style="text-align:left;">匹配regexp1或regexp2中的一项</td> </tr> </table>下面的一个例子是从《Tcl and Tk ToolKit》中摘下来的, 下面进行说明:
^((0x)?[0-9a-fA-F]+|[0-9]+)$
这个正规表达式匹配任何十六进制或十进制的整数.
两个正规表达式以|
分开(0x)?[0-9a-fA-F]+
和[0-9]+
, 表示可以匹配其中的任何一个, 事实上前者匹配十六进制, 后者匹配十进制.
^
表示必须从头进行匹配, 从而上述正规表达式不匹配jk12
之类不是以0x
或数字开头的串.
$
表示必须从末尾开始匹配, 从而上述正规表达式不匹配12jk
之类不是数字或a-fA-F
结尾的串.
下面以(0x)?[0-9a-fA-F]+
进行说明, (0x)
表示0x
一起作为一项, ?
表示前一项(0x)
可以出现0次或多次, [0-9a-fA-F]
表示可以是任意0到9之间的单个数字或a到f或A到F之间的单个字母, +
表示象前面那样的单个数字或字母可以重复出现一次或多次.
如果regexp
命令后面有参数matchVar
和subMatchVar
, 则所有的参数被当作变量名, 如果变量不存在, 就会被生成. regexp
把匹配整个正规表达式的子字符串赋给第一个变量, 匹配正规表达式的最左边的子表达式的子字符串赋给第二个变量, 依次类推, 例如:
regexp
可以设置一些开关(switchs), 来控制匹配结果:
-nocase
: 匹配时不考虑大小写-indices
: 改变各个变量的值, 这使各个变量的值变成了对应的匹配子串在整个字符串中所处位置的索引. 例如:<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">regexp</span> <span style="color: #666666">-</span>indices <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">([</span><span style="color: #B8860B">0-9</span><span style="color: #AA22FF; font-weight: bold">]</span><span style="color: #666666">+</span><span style="color: #AA22FF; font-weight: bold">)</span> <span style="color: #666666">*</span><span style="color: #AA22FF; font-weight: bold">([</span><span style="color: #B8860B">a-z</span><span style="color: #AA22FF; font-weight: bold">]</span><span style="color: #666666">+</span><span style="color: #AA22FF; font-weight: bold">)}</span> <span style="color: #BB4444">" there is 100 apples"</span> total num word
<span style="color: #B8860B">1</span>
<span style="color: #666666">%</span> <span style="color: #AA22FF">puts</span> <span style="color: #BB4444">" $total ,$num,$word"</span>
<span style="color: #B8860B">9</span> <span style="color: #666666">20</span> <span style="border: 1px solid #FF0000">,</span><span style="color: #666666">10</span> <span style="color: #666666">12</span><span style="border: 1px solid #FF0000">,</span><span style="color: #666666">15</span> <span style="color: #666666">20</span>
</pre></div>正好子串100 apples
的序号是 9-20, 100
的序号是 10-12, apples
的序号是 15-20
-about
: 返回正则表达式本身的信息, 而不是对缓冲区的解析. 返回的是一个 list, 第一个元素是子表达式的个数, 第二个元素开始存放子表达式的信息.
-expanded
: 启用扩展的规则, 将空格和注释忽略掉, 相当于使用内嵌语法(?x
)
-line
: 启用行敏感匹配. 正常情况下^
和$
只能匹配缓冲区起始和末尾, 对于缓冲区内部新的行是不能匹配的, 通过这个开关可以使缓冲区内部新的行也可以被匹配. 它相当于同时使用-linestop
和-lineanchor
开关, 或者使用内嵌语法(?n
)
-linestop
: 启动行结束敏感开关. 使^
可以匹配缓冲区内部的新行. 相当于内嵌语法(?p
)
-lineanchor
: 改变^
和$
的匹配行为, 使可以匹配缓冲区内部的新行. 相当于内嵌语法(?w
)
-all
: 进最大可能的匹配
-inline
: Causes the command to return, as a list, the data that would otherwise be placed in match variables. When using -inline, match variables may not be specified. If used with -all, the list will be concatenated at each iteration, such that a flat list is always returned. For each match iteration, the command will append the overall match data, plus one element for each subexpression in the regular expression. Examples are:
-start index
: 强制从偏移为index
开始的位置进行匹配. 使用这个开关之后, ^
将不能匹配行起始位置, \A
将匹配字符串的index
偏移位置. 如果使用了-indices
开关, 则indices
表示绝对位置, index
表示输入字符的相对位置.
--
: 表示这后面再没有开关(switchs)了, 即使后面有以-
开头的参数也被当作正规表达式的一部分.
regsub
命令语法: regsub ?switchs? exp string subSpec varname
regsub
的第一个参数是一个整个表达式, 第二个参数是一个输入字符串, 这一点和regexp
命令完全一样, 也是当匹配时返回 1, 否则返回 0. 不过regsub
用第三个参数的值来替换字符串string
中和正规表达式匹配的部分, 第四个参数被认为是一个变量, 替换后的字符串存入这个变量中. 例如:
这里there
被用their
替换了.
regsub
命令也有几个开关(switchs):
-nocase
: 意义同regexp
命令中.-all
: 没有这个开关时, regsub
只替换第一个匹配, 有了这个开关, regsub
将把所有匹配的地方全部替换.--
: 意义同regexp
命令中.string
命令string
命令的语法: string option arg ?arg...?
string
命令具有强大的操作字符串的功能, 其中的option
选项多达 20 个. 下面介绍其中常用的部分.
string compare ?-nocase? ?-length int? string1 string2
把字符串string1
和string2
进行比较, 返回值为-1, 0 或 1, 分别对应string1
小于, 等于或大于string2
. 如果有-length
参数, 那么只比较前int
个字符, 如果int
为负数, 那么这个参数被忽略. 如果有-nocase
参数, 那么比较时不区分大小写.
string equal ?-nocase? ?-length int? string1 string2
把字符串string1
和string2
进行比较, 如果两者相同, 返回值为 1, 否则返回 0. 其他参数与 8.5.1 同.
string first string1 string2 ?startindex?
在string2
中从头查找与string1
匹配的字符序列, 如果找到, 那么就返回匹配的第一个字母所在的位置(0-based). 如果没有找到, 那么返回-1. 如果给出了startindex
变量, 那么将从startindex
处开始查找. 例如:
string index string charIndex
返回string
中第charIndex
个字符(0-based). charIndex
可以是下面的值:
整数 n
: 字符串中第 n 个字符(0-based)end
: 最后一个字符end-整数 n
: 倒数第 n 个字符. string index "abcd" end-1
返回字符c
如果charIndex
小于 0, 或者大于字符串string
的长度, 那么返回空.
例如:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> index abcdef <span style="color: #666666">2</span> c <span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> index abcdef end-2 d </pre></div>string last string1 string2 ?startindex?
参照 8.5.3, 唯一的区别是从后往前查找
string length string
返回字符串string
的长度.
string match ?-nocase? pattern string
如果pattern
匹配string
, 那么返回 1, 否则返回 0. 如果有-nocase
参数, 那么就不区分大小写.
在pattern
中可以使用通配符:
*
: 匹配 string 中的任意长的任意字符串, 包括空字符串.?
: 匹配 string 中任意单个字符[chars]
: 匹配字符集合 chars 中给出的任意字符,其中可以使用 A-Z 这种形式\x
: 匹配单个字符 x, 使用\
是为了让 x 可以为字符*,-,[,].例子:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> match <span style="color: #666666">*</span> abcdef <span style="color: #B8860B">1</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> match a<span style="color: #666666">*</span> abcdef <span style="color: #B8860B">1</span> <span style="color: #AA22FF">string</span> match a<span style="color: #666666">?</span>cdef abcdef <span style="color: #B8860B">1</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> match <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a</span><span style="color: #AA22FF; font-weight: bold">[</span><span style="color: #B8860B">b-f</span><span style="color: #AA22FF; font-weight: bold">]</span>cdef<span style="color: #AA22FF; font-weight: bold">}</span> abcdef <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">注意一定要用'</span><span style="color: #AA22FF; font-weight: bold">{</span><span style="border: 1px solid #FF0000">',否则</span> <span style="color: #B8860B">TCL</span> <span style="border: 1px solid #FF0000">解释器会把</span> b-f <span style="border: 1px solid #FF0000">当作命令名</span> <span style="color: #B8860B">1</span> <span style="color: #666666">//</span><span style="border: 1px solid #FF0000">从而导致错误</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">string</span> match <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a</span><span style="color: #AA22FF; font-weight: bold">[</span><span style="color: #B8860B">b-f</span><span style="color: #AA22FF; font-weight: bold">]</span>cdef<span style="color: #AA22FF; font-weight: bold">}</span> accdef <span style="color: #B8860B">1</span> </pre></div>string range string first last
返回字符串string
中从第first
个到第last
个字符的子字符串(0-based). 如果first
<0, 那么first
被看作 0, 如果last
大于或等于字符串的长度, 那么last
被看作end
, 如果first
比last
大, 那么返回空.
string repeat string count
返回值为: 重复了string
字符串count
次的字符串. 例如:
string replace string first last ?newstring?
返回值为: 从字符串string
中删除了第first
到第last
个字符(0-based)的字符串, 如果给出了newstring
变量, 那么就用newstring
替换从第first
到第last
个字符. 如果first
<0, 那么first
被看作 0, 如果last
大于或等于字符串的长度, 那么last
被看作end
, 如果first
比last
大或者大于字符串string
的长度或者last
小于 0, 那么原封不动的返回string
.
string tolower string ?first? ?last?
返回值为: 把字符串string
转换成小写后的字符串, 如果给出了first
和last
变量, 就只转换first
和last
之间的字符.
string toupper string ?first? ?last?
同 8.5.11. 转换成大写.
string trim string ?chars?
返回值为: 从string
字符串的首尾删除掉了字符集合chars
中的字符后的字符串. 如果没有给出chars
, 那么将删除掉 spaces, tabs, newlines, carriage returns 这些字符. 例如:
string trimleft string ?chars?
同 8.5.13. 不过只删除左边的字符.
string trimright string ?chars?
同 8.5.13. 不过只删除右边的字符.
TCL 提供了丰富的文件操作的命令. 通过这些命令你可以对文件名进行操作(查找匹配某一模式的文件), 以顺序或随机方式读写文件, 检索系统保留的文件信息(如最后访问时间).
TCL 中的文件名和我们熟悉的 windows 表示文件的方法有一些区别: 在表示文件的目录结构时它使用/
, 而不是\
, 这和 TCL 最初是在 UNIX 下实现有关. 比如 C 盘 tcl 目录下的文件sample.tcl
在 TCL 中这样表示: C:/tcl/sample.tcl
.
这个名为tgrep
的过程, 可以说明 TCL 文件 I/O 的基本特点:
以上过程非常象 UNIX 的grep
命令, 你可以用两个参数调用它, 一个是模式, 另一个是文件名, tgrep
将打印出文件中所有匹配该模式的行.
下面介绍上述过程中用到的几个基本的文件输入输出命令.
open name ?access?
open
命令以access
方式打开文件name
. 返回供其他命令(gets
, close
等)使用的文件标识. 如果name
的第一个字符是|
, 管道命令被触发, 而不是打开文件.
文件的打开方式和我们熟悉的 C 语言类似, 有以下方式:
r
: 只读方式打开. 文件必须已经存在. 这是默认方式.r+
: 读写方式打开, 文件必须已经存在.w
: 只写方式打开文件, 如果文件存在则清空文件内容, 否则创建一新的空文件.w+
: 读写方式打开文件, 如文件存在则清空文件内容, 否则创建新的空文件.a
: 只写方式打开文件, 文件必须存在, 并把指针指向文件尾.a+
: 只读方式打开文件, 并把指针指向文件尾. 如文件不存在, 创建新的空文件.
open
命令返回一个字符串用于表识打开的文件. 当调用别的命令(如: gets
, puts
, close
)对打开的文件进行操作时, 就可以使用这个文件标识符. TCL 有三个特定的文件标识: stdin
, stdout
和stderr
, 分别对应标准输入, 标准输出和错误通道, 任何时候你都可以使用这三个文件标识.
gets fileId ?varName?
读fileId
标识的文件的下一行, 忽略换行符. 如果命令中有varName
就把该行赋给它, 并返回该行的字符数(文件尾返回-1), 如果没有varName
参数, 返回文件的下一行作为命令结果(如果到了文件尾, 就返回空字符串).
和gets
类似的命令是read
, 不过read
不是以行为单位的, 它有两种形式:
read ?-nonewline? fileId
: 读并返回fileId
标识的文件中所有剩下的字节. 如果没有nonewline
开关, 则在换行符处停止.
read fileId numBytes
: 在fileId
标识的文件中读并返回下一个numbytes
字节.
puts ?-nonewline? ?fileId? string puts
把string
写到fileId
中, 如果没有nonewline
开关的话, 添加换行符. fileId
默认是stdout
. 命令返回值为一空字符串.
puts
命令使用 C 的标准 I/O 库的缓冲区方案, 这就意味着使用puts
产生的信息不会立即出现在目标文件中. 如果你想使数据立即出现在文件中, 那你就调用flush
命令:
flush fileId
把缓冲区内容写到fileId
标识的文件中, 命令返回值为空字符串.
flush
命令迫使缓冲区数据写到文件中. flush
直到数据被写完才返回. 当文件关闭时缓冲区数据会自动flush
.
close ?fileId?
关闭标识为fileId
的文件, 命令返回值为一空字符串. 这里特别说明的一点是, TCL 中对串口, 管道, socket 等的操作和对文件的操作类似, 以上对文件的操作命令同样适用于它们.
默认文件输入输出方式是连续的: 即每个gets
或read
命令返回的是上次gets
或read
访问位置后面的字节, 每个puts
命令写数据是接着上次puts
写的位置接着写. TCL 提供了seek
, tell
和eof
等命令使用户可以非连续访问文件.
每个打开的打开文件都有访问点, 即下次读写开始的位置. 文件打开时, 访问点总是被设置为文件的开头或结尾, 这取决于打开文件时使用的访问模式. 每次读写后访问位置按访问的字节数后移相应的位数.
可以使用seek
命令来改变文件的访问点:
seek fileId offset ?origin?
: 把fileId
标识的文件的访问点设置为相对于origin
偏移量为offset
的位置. origin
可以是start
, current
, end
, 默认是start
. 命令的返回值是一空字符串.
例如: seek fileId 2000
改变fieleId
标识的文件访问点, 以便下次读写开始于文件的第 2000 个字节.
seek
的第三个参数说明偏移量从哪开始计算. 第三个参数必为start
, current
或end
中的一个. start
是默认值: 即偏移量是相对文件开始处计算. current
是偏移量从当前访问位置计算. end
是偏移量从文件尾开始计算.
tell fileId
: 返回fileId
标识的文件的当前访问位置.
eof fileId
: 如果到达fileId
标识的文件的末尾返回 1, 否则返回 0.
TCL 提供两个命令来管理当前工作目录: pwd
和cd
.
pwd
和 UNIX 下的pwd
命令完全一样, 没有参数, 返回当前目录的完整路径.
cd
命令也和 UNIX 命令也一样, 使用一个参数, 可以把工作目录改变为参数提供的目录. 如果cd
没使用参数, UNIX 下, 会把工作目录变为启动 TCL 脚本的用户的工作目录, WINDOWS 下会把工作目录变为 windows 操作系统的安装目录所在的盘的根目录(如: C:/). 值得注意的是, 提供给cd
的参数中路径中的应该用/
而不是\
. 如cd C:/TCL/lib
. 这是 UNIX 的风格.
TCL 提供了两个命令进行文件名操作: glob
和file
, 用来操作文件或获取文件信息.
glob
命令采用一种或多种模式作为参数, 并返回匹配这个(些)模式的所有文件的列表, 其语法为:
glob ?switches? pattern ?pattern ...?
其中switches
可以取下面的值:
-nocomplain
: 允许返回一个空串, 没有-nocomplain
时, 如果结果是空的, 就返回错误.--
: 表示switches
结束, 即后面以-
开头的参数将不作为switches
.glob
命令的模式采用string match
命令(见 8.5.7 节)的匹配规则. 例如:
返回当前目录中所有.c
或.h
的文件名. glob
还允许模式中包含括在花括号中间以逗号分开的多种选择, 例如:
下面的命令和上面的命令等价:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF">glob</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">src</span><span style="color: #666666">/*</span>.<span style="color: #AA22FF; font-weight: bold">[</span><span style="color: #B8860B">ch</span><span style="color: #AA22FF; font-weight: bold">]}</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">backup</span><span style="color: #666666">/*</span>.<span style="color: #AA22FF; font-weight: bold">[</span><span style="color: #B8860B">ch</span><span style="color: #AA22FF; font-weight: bold">]}</span> </pre></div>注意: 这些例子中模式周围的花括号是必须的, 可以防止命令置换. 在调用glob
命令对应的 C 过程前这些括号会被 TCL 解释器去掉.
如果glob
的模式以一斜线结束, 那将只匹配目录名. 例如: glob */
只返回当前目录的所有子目录.
如果glob
返回的文件名列表为空, 通常会产生一个错误. 但是glob
的在样式参数之前的第一个参数是-nocomplain
的话, 这时即使结果为空, glob
也不会产生错误.
对文件名操作的第二个命令是file
. file
是有许多选项的常用命令, 可以用来进行文件操作也可以检索文件信息. 这节讨论与名字相关的选项, 下一节描述其他选项. 使用file
命令时, 我们会发现其中有很明显的 UNIX 痕迹.
file atime name
: 返回一个十进制的字符串, 表示文件name
最后被访问的时间. 时间是以秒为单位从 1970 年 1 月 1 日 12: 00 AM 开始计算. 如果文件name
不存在或查询不到访问 时间就返回错误. 例:
file copy ?-force? ?--? source target
file copy ?-force? ?--? source ?source ...? targetDir
这个命令把source
中指明的文件或目录递归的拷贝到目的地址targetDir
, 只有当存在-force
选项时, 已经存在的文件才会被覆盖. 试图覆盖一个非空的目录或以一个文件覆盖一个目录或以一个目录覆盖一个文件都会导致错误. --
的含义和前面所说的一样.
file delete ?-force? ?--? pathname ?pathname ... ?
: 这个命令删除pathname
指定的文件或目录, 当指定了-force
时, 非空的目录也会被删除. 即使没有指定-force
, 只读文件也会被删除. 删除一个不存在的文件不会引发错误.
file dirname name
: 返回name
中最后一个/
前的所有字符; 如果name
不包含/
, 返 回.
; 如果name
中最后一个/
是第name
的第一个字符, 返回/
.
file executable name
: 如果name
对当前用户是可以执行的, 就返回 1, 否则返回 0.
file exists name
: 如果name
存在于当前用户拥有搜索权限的目录下返回 1, 否则返回 0.
file extension name
: 返回name
中最后的.
以后(包括这个小数点)的所有字符. 如果name
中没有.
或最后斜线后没有.
返回空字符.
file isdirectory name
: 如果name
是目录返回 1, 否则返回 0.
file isfile name
: 如果name
是文件返回 1, 否则返回 0.
file lstat name arrayName
: 除了利用lstat
内核调用代理stat
内核调用之外, 和file stat
命令一样, 这意味着如果name
是一个符号连接, 那么这个命令返回的是这个符号连接的信息, 而不是这个符号连接指向的文件的信息. 对于不支持符号连接的操作系统, 这个命令和file stat
命令一样.
file mkdir dir ?dir ...?
: 这个命令和 UNIX 的mkdir
命令类似, 创建dir
中指明的目录. 如果dir
已经存在, 这个命令不作任何事情, 也不返回错误. 不过如果试图用一个目录覆盖已经存在的一个文件会导致错误. 这个命令顺序处理各个参数, 如果发生错误的话, 马上退出.
file mtime name
: 返回十进制的字符串, 表示文件name
最后被修改的时间. 时间是以秒为单位从 1970 年 1 月 1 日 12: 00 AM 开始计算.
file owned name
: 如果name
被当前用户拥有, 返回 1, 否则返回 0.
file readable name
: 如果当前用户可对name
进行读操作, 返回 1, 否则返回 0.
file readlink name
: 返回name
代表的符号连接所指向的文件. 如果name
不是符号连接或者找不到符号连接, 返回错误. 在不支持符号连接的操作系统(如 windows)中选项readlink
没有定义.
file rename ? -force? ?--? source target
file rename ?-force? ?--? source ?source ...? targetDir
这个命令同时具有重命名和移动文件(夹)的功能. 把source
指定的文件或目录改名或移动到targetDir
下. 只有当存在-force
选项时, 已经存在的文件才会被覆盖. 试图覆盖一个非空的目录或以一个文件覆盖一个目录或以一个目录覆盖一个文件都会导致错误.
file rootname name
: 返回name
中最后.
以前(不包括这个小数点)的所有字符. 如果name
中没有.
返回name
.
file size name
: 返回十进制字符串, 以字节表示name
的大小. 如果文件不存在或得不到name
的大小, 返回错误.
file stat name arrayName
: 调用stat
内核来访问name
, 并设置arrayName
参数来保存stat
的返回信息. arrayName
被当作一个数组, 它将有以下元素: atime
, ctime
, dev
, gid
, ino
, mode
, mtime
, nlink
, size
, type
和uid
. 除了type
以外, 其他元素都是十进制的字符串, type
元素和file type
命令的返回值一样. 其它各个元素的含义如下:
atime
: 最后访问时间.ctime
: 状态最后改变时间.dev
: 包含文件的设备标识.gid
: 文件组标识.ino
: 设备中文件的序列号.mode
: 文件的 mode 比特位.mtime
: 最后修改时间.nlink
: 到文件的连接的数目.size
: 按字节表示的文件尺寸.uid
: 文件所有者的标识.
这里的atime
, mtime
, size
元素与前面讨论的file
的选项有相同的值. 要了解其他元素更多的信息, 就查阅stat
系统调用的文件; 每个元都直接从相应stat
返回的结构域中得到. 文件操作的stat
选项提供了简单的方法使一次能获得一个文件的多条信息. 这要比分多次调用file
来获得相同的信息量要显著的快.
file tail name
: 返回name
中最后一个斜线后的所有字符, 如果没有斜线返回name
.
file type name
: 返回文件类型的字符串, 返回值可能是下列中的一个: file
, directory
, characterspecial
, blockSpecial
, fifo
, link
或socket
.
file writable name
: 如果当前用户对name
可进行写操作, 返回 1, 否则返回 0.
错误和异常处理机制是创建大而健壮的应用程序的必备条件之一, 很多计算机语言都提供了错误和异常处理机制, TCL 也不例外.
错误(Errors)可以看作是异常(Exceptions)的特例. TCL 中, 异常是导致脚本被终止的事件, 除了错误还包括break
, continue
和return
等命令. TCL 允许程序俘获异常, 这样仅有程序的一部分工作被撤销. 程序脚本俘获异常事件以后, 可以忽略它, 或者从异常中恢复. 如果脚本无法恢复此异常, 可以把它重新发布出去. 下面是与异常有关的 TCL 命令:
catch command ?varName?
: 这个命令把command
作为 TCL 脚本求值, 返回一个整型值表明command
结束的状态. 如果提供varName
参数, TCL 将生成变量varName
, 用于保存command
产生的错误消息.
error message ?info? ?code?
: 这个命令产生一个错误, 并把message
作为错误信息. 如果提供info
参数, 则被用于初始化全局变量errorInfo
. 如果提供code
参数, 将被存储到全局变量errorCode
中.
return -code code ?-errorinfo info? ?-errorcode errorCode? ?string?
: 这个命令使特定过程返回一个异常. code
指明异常的类型, 必须是ok
, error
, return
, break
, continue
或者是一个整数. -errorinfo
选项用于指定全局变量errorInfo
的初始值, -errorcode
用于指定全局变量errorCode
的初始值. string
给出return
的返回值或者是相关的错误信息, 其默认值为空.
当发生一个 TCL 错误时, 当前命令被终止. 如果这个命令是一大段脚本的一部分, 那么整个脚本被终止. 如果一个 TCL 过程在运行中发生错误, 那么过程被终止, 同时调用它的过程, 以至整个调用栈上的活动过程都被终止, 并返回一个错误标识和一段错误描述信息.
举个例子, 考虑下面脚本, 它希望计算出列表元素的总和:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">set</span> list <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">44</span> <span style="color: #666666">16</span> <span style="color: #666666">123</span> <span style="color: #666666">98</span> <span style="color: #666666">57</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">set</span> sum <span style="color: #666666">0</span> <span style="color: #AA22FF; font-weight: bold">foreach</span> el <span style="color: #B8860B">$list</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">set</span> sum <span style="color: #AA22FF; font-weight: bold">[expr</span> <span style="color: #B8860B">$sum</span><span style="color: #666666">+</span><span style="color: #B8860B">$element</span><span style="color: #AA22FF; font-weight: bold">]</span> <span style="color: #AA22FF; font-weight: bold">}</span> <span style="border: 1px solid #FF0000">=</span><span style="color: #666666">></span> <span style="color: #B8860B">can</span><span style="border: 1px solid #FF0000">'</span>t read <span style="color: #BB4444">"element"</span><span style="color: #666666">:</span> no such variable </pre></div>这个脚本是错误的, 因为没有element
这个变量. TCL 分析expr
命令时, 会试图用element
变量的值进行替换, 但是找不到名字为element
的变量, 所以会报告一个错误. 由于foreach
命令利用 TCL 解释器解释循环体, 所以错误标识被返回给foreach
. foreach
收到这个错误, 会终止循环的执行, 然后把同样的错误标识作为它自己的返回值返回给调用者. 按这样的顺序, 将致使整个脚本终止. 错误信息can't read "element": no such variable
会被一路返回, 并且很可能被显示给用户.
很多情况下, 错误信息提供了足够的信息为你指出哪里以及为什么发生了错误. 然而, 如果错误发生在一组深层嵌套的过程调用中, 仅仅给出错误信息还不能为指出哪里发生了错误提供足够信息. 为了帮助我们指出错误的位置, 当 TCL 撤销程序中运行的命令时, 创建了一个跟踪栈, 并且把这个跟踪栈存储到全局变量errorInfo
中. 跟踪栈中描述了每一层嵌套调用. 例如发生上面的那个错误后, errorInfo
有如下的值:
can't read "element": no such variable
while executing
"expr $sum+$element"
("foreach" body line 2)
invoked from within
"foreach el $list {
set sum [expr $sum+$element]
}"
在全局变量errorCode
中, TCL 还提供了一点额外的信息. errorCode
变量是包含了一个或若干元素的列表. 第一个元素标示了错误类别, 其他元素提供更详细的相关的信息. 不过, errorCode
变量是 TCL 中相对较新的变量, 只有一部分处理文件访问和子过程的命令会设置这个变量. 如果一个命令产生的错误没有设置errorCode
变量, TCL 会填一个NONE
值.
当用户希望得到某一个错误的详细的信息, 除了命令返回值中的错误信息外, 可以查看全局变量errorInfo
和errorCode
的值.
大多数 TCL 错误是由实现 TCL 解释器的 C 代码和内建命令的 C 代码产生的. 然而, 通过执行TCL 命令error
产生错误也是可以的, 见下面的例子:
error
命令产生了一个错误, 并把它的参数作为错误消息. 作为一种编程的风格, 你应该只在迫不得已终止程序时下才使用error
命令. 如果你认为错误很容易被恢复而不必终止整个脚本, 那么使用通常的return
机制声明成功或失败会更好(例如, 命令成功返回某个值, 失败返回另一个值, 或者设置变量来表明成功或失败). 尽管从错误中恢复是可能的, 但恢复机制比通常的return
返回值机制要复杂. 因此, 最好是在你不想恢复的情况下才使用error
命令.
catch
捕获错误错误通常导致所有活动的 TCL 命令被终止, 但是有些情况下, 在错误发生后继续执行脚本是有用的. 例如, 你用unset
取消变量x
的定义, 但执行unset
时, x可能不存在. 如果你用
unset`取消不存在的变量, 会产生一个错误:
此时, 你可以用catch
命令忽略这个错误:
catch
的参数是 TCL 脚本. 如果脚本正常完成, catch
返回 0. 如果脚本中发生错误, catch
会俘获错误(这样保证catch
本身不被终止掉)然后返回 1 表示发生了错误. 上面的例子忽略unset
的任何错误, 这样如果x
存在则被取消, 即使x
以前不存在也对脚本没有任何影响.
catch
命令可以有第二个参数. 如果提供这个参数, 它应该是一个变量名, catch
把脚本的返回值或者是出错信息存入这个变量.
在这种情况下, unset
命令产生错误, 所以msg
被设置成包含了出错信息. 如果变量x
存在, 那么unset
会成功返回, 这样catch
的返回值为 0, msg
存放unset
命令的返回值, 这里是个空串. 如果在命令正常返回时, 你想访问脚本的返回值, 这种形式很有用; 如果你想在出错时利用错误信息做些什么, 如产生 log 文件, 这种形式也很有用.
错误不是导致运行中程序被终止的唯一形式. 错误仅是被称为异常的一组事件的一个特例. 除了error
, TCL 中还有三种形式的异常, 他们是由break
, continue
和return
命令产生的. 所有的异常以相同的方式导致正在执行的活动脚本被终止, 但有两点不同: 首先, errorInfo
和errorCode
只在错误异常中被设置; 其次, 除了错误之外的异常几乎总是被一个命令俘获, 不会波及其他, 而错误通常撤销整个程序中所有工作. 例如, break
和continue
通常是被引入到一个如foreach
的循环命令中; foreach
将俘获break
和continue
异常, 然后终止循环或者跳到下一次重复. 类似地, return
通常只被包含在过程或者被source
引入的文件中. 过程实现和source
命令将俘获return
异常.
所有的异常伴随一个字符串值. 在错误情况, 这个串是错误信息, 在return
方式, 字符串是过程或脚本的返回值, 在break
和continue
方式, 字符串是空的.
catch
命令其实可以俘获所有的异常, 不仅是错误. catch
命令的返回值表明是那种情况的异常, catch
命令的第二个参数用来保存与异常相关的串. 例如:
下表是对命令: catch command ?varName?
的说明.
与catch
命令提供俘获所有异常的机制相对应, return
可以提供产生所有类型异常.
这里有一个do
命令的实现, 使用了catch
和return
来正确处理异常:
这个新的实现在catch
命令中求循环体的值, 然后检查循环体是如何结束的. 如果没有发生异常(0), 或者异常是continue
(4), 那么do
继续下一个循环. 如果发生error
(1)或者return
(2), 那么do
使用return
把异常传递到调用者. 如果发生了break
(3)异常, 那么do
正常返回到调用者, 循环结束.
当do
反射一个error
到上层时, 它使用了return
的-errorInfo
选项, 保证错误发生后能够得到一个正确的调用跟踪栈. -errorCode
选项用于类似的目的以传递由catch
命令得到的初始errorCode
, 作为do
命令的errorCode
返回. 如果没有-errorCode
选项, errorCode
变量总是得到NONE
值.
本章描述了一个允许您查询和操纵TCL解释器内部状态的命令集. 例如, 您可以通过这些命令看一个变量是否存在, 可以查看数组有哪些入口(entry), 监控所有对变量的访问操作, 可以重命名和删除一个命令或处理那些未定义命令的参考信息.
利用array
命令可以查询一个数组变量中已经定义了的元素的信息. array
命令的形式如下:
array option arrayName ?arg arg ...?
由于option
的不同, array
命令有多种形式. 如果我们打算开始对一个数组的元素进行查询, 我们可以先启动一个搜索(search), 这可以由下面的命令做到:
array startserach arrayName
: 这个命令初始化一个对name
数组的所有元素的搜索(search), 返回一个搜索标识(search identifier), 这个搜索标识将被用于命令array nextelement
, array anymore
和array donesearch
.
array nextelement arrayName searchId
: 这个命令返回arrayName
的下一个元素, 如果arrayName
的所有元素在这一次搜索中都已经返回, 那么返回一个空字符串. 搜索标识searchId
必须是array startserach
的返回值. 注意: 如果对arrayName
的元素进行了添加或删除, 那么所有的搜索都会自动结束, 就象调用了命令array donesearch
一样, 这样会导致array nextelement
操作失败.
array anymore arrayName searchId
: 如果在一个搜索中还有元素就返回 1, 否则返回 0. searchId
同上. 这个命令对具有名字为空的元素的数组尤其有用, 因为这时从array nextelement
中不能确定一个搜索是否完成.
array donesearch arrayName searchId
: 这个命令中止一个搜索, 并销毁和这个搜索有关的所有状态. searchId
同上. 命令返回值为一个空字符串. 当一个搜索完成时一定要注意调用这个命令.
array
命令的其他option
如下:
array exists arrayName
: 如果存在一个名为arrayName
的数组, 返回 1, 否则返回 0.
array get arrayName ?pattern?
: 这个命令的返回值是一个元素个数为偶数的的 list. 我们可以从前到后把相邻的两个元素分成一个个数据对, 那么, 每个数据对的第一个元素是arrayName
中元素的名字, 数据对的第二个元素是该数据元素的值. 数据对的顺序没有规律. 如果没有pattern
参数, 那么数组的所有元素都包含在结果中, 如果有pattern
参数, 那么只有名字和pattern
匹配(用string match
的匹配规则)的元素包含在结果中. 如果arrayName
不是一个数组变量的名字或者数组中没有元素, 那么返回一个空 list. 例:
array set arrayName list
: 设置数组arrayName
的元素的值. list 的形式和array get
的返回值的 list 形式一样. 如果arrayName
不存在, 那么生成arrayName
. 例:
array names arrayName ?pattern?
: 这个命令返回数组arrayName
中和模式pattern
匹配的元素的名字组成的一个 list. 如果没有pattern
参数, 那么返回所有元素. 如果数组中没有匹配的元素或者arrayName
不是一个数组的名字, 返回一个空字符串.
array size arrayName
: 返回代表数组元素个数的一个十进制的字符串, 如果arrayName
不是一个数组的名字, 那么返回 0.
下面这个例子通过使用array names
和foreach
命令, 枚举了数组所有的元素:
当然, 我们也可以利用startsearch
, anymore
, nextelement
和donesearch
选项来遍历一个数组.这种方法比上面所给出的foreach
方法的效率更高, 不过要麻烦得多, 因此 不常用.
info
命令info
命令提供了查看 TCL 解释器信息的手段, 它有超过一打的选项, 详细说明请参考下面几节.
info
命令的几个选项提供了查看变量信息的手段.
info exists varName
: 如果名为varName
的变量在当前上下文(作为全局或局部变量)存在, 返回 1, 否则返回 0.
info globals ?pattern?
: 如果没有pattern
参数, 那么返回包含所有全局变量名字的一个 list. 如果有pattern
参数, 就只返回那些和pattern
匹配的全局变量(匹配的方式和string match
相同).
info locals ?pattern?
: 如果没有pattern
参数, 那么返回包含所有局部变量(包括当前过程的参数)名字的一个 list, global
和upvar
命令定义的变量将不返回. 如果有pattern
参数, 就只返回那些和pattern
匹配的局部变量(匹配的方式和string match
相同).
info vars ?pattern?
: 如果没有pattern
参数, 那么返回包括局部变量和可见的全局变量的名字的一个 list. 如果有pattern
参数, 就只返回和模式pattern
匹配的局部变量和可见全局变量. 模式中可以用namespace
来限定范围, 如:foo::option*
, 就只返回namespace
中和option*
匹配的局部和全局变量. (注: tcl80 以后引入了namespace
概念, 不过我们一般编写较小的 TCL 程序, 可以对namespace
不予理睬, 用兴趣的话可以查找相关资料.)
下面针对上述命令举例, 假设存在全局变量global1
和global2
, 并且有下列的过程存在:
然后在过程中执行下列命令:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> vars <span style="color: #B8860B">global1</span> arg1 arg2 local2 local1 <span style="color: #666666">//</span>global2 <span style="border: 1px solid #FF0000">不可见</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> globals <span style="color: #B8860B">global2</span> global1 <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> locals <span style="color: #B8860B">arg1</span> arg2 local2 local1 <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> vars <span style="color: #666666">*</span>al<span style="color: #666666">*</span> <span style="color: #B8860B">global1</span> local2 local1 </pre></div>info
命令的另外的一些选项可以查看过程信息.
info procs ?pattern?
: 如果没有pattern
参数, 命令返回当前namespace
中定义的所有过程的名字. 如果有pattern
参数, 就只返回那些和pattern
匹配的过程的名字(匹配的方式和string match
相同).
info body procname
: 返回过程procname
的过程体. procname
必须是一个 TCL 过程.
info args procname
: 返回包含过程procname
的所有参数的名字的一个 list. procname
必须是一个 TCL 过程.
info default procname arg varname
: procname
必须是一个 TCL 过程, arg
必须是这个过程的一个变量. 如果arg
没有缺省值, 命令返回 0; 否则返回 1, 并且把arg
的缺省值赋给变量varname
.
info level ?number?
: 如果没有number
参数, 这个命令返回当前过程在调用栈的位置. 如果有number
参数, 那么返回的是包含在调用栈的位置为number
的过程的过程名及其参数的一个 list.
下面针对上述命令举例:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">proc</span> maybeprint <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">a</span> b <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">c</span> <span style="color: #666666">24</span><span style="color: #AA22FF; font-weight: bold">}}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">if</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">$a</span><span style="color: #666666"><</span><span style="color: #B8860B">$b</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF">puts</span> stdout <span style="color: #BB4444">"c is $c"</span> <span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> body maybeprint <span style="color: #AA22FF; font-weight: bold">if</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">$a</span><span style="color: #666666"><</span><span style="color: #B8860B">$b</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF">puts</span> stdout <span style="color: #BB4444">"c is $c"</span> <span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> args maybeprint <span style="color: #B8860B">a</span> b c <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> default maybeprint a x <span style="color: #B8860B">0</span> <span style="color: #666666">%</span> <span style="color: #AA22FF">info</span> default maybeprint a c <span style="color: #B8860B">1</span> <span style="color: #666666">%</span><span style="color: #AA22FF; font-weight: bold">set</span> x <span style="color: #B8860B">24</span> </pre></div>下面的过程打印出了当前的调用栈, 并显示了每一个活动过程名字和参数:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">proc</span> printStack<span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">set</span> level <span style="color: #AA22FF; font-weight: bold">[</span><span style="color: #AA22FF">info</span> level<span style="color: #AA22FF; font-weight: bold">]</span> <span style="color: #AA22FF; font-weight: bold">for</span> <span style="color: #AA22FF; font-weight: bold">{set</span> i <span style="color: #666666">1</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #B8860B">$i</span><span style="color: #666666"><</span><span style="color: #B8860B">$level</span><span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #AA22FF">incr</span> i<span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF">puts</span> <span style="color: #BB4444">"Level $i:[info level $i]"</span> <span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>info
命令的另外选项可以查看命令信息.
info commands ?pattern?
: 如果没有参数pattern
, 这个命令返回包含当前namspace
中所有固有, 扩展命令以及以proc
命令定义的过程在内的所有命令的名字的一个 list. pattern
参数的含义和info procs
一样.
info cmdcount
: 返回了一个十进制字符串, 表明多少个命令曾在解释器中执行过.
info complete command
: 如果命令command
是完整的, 那么返回 1, 否则返回 0. 这里判断命令是否完整仅判断引号, 括号和花括号是否配套.
info script
: 如果当前有脚本文件正在 Tcl 解释器中执行, 则返回最内层处于激活状态的脚本文件名; 否则将返回一个空的字符串.
info tclversion
: 返回为 Tcl 解释器返回的版本号, 形式为major.minor
, 例如8.3
.
info library
: 返回 Tcl 库目录的完全路径. 这个目录用于保存 Tcl 所使用的标准脚本, TCL 在初始化时会执行这个目录下的脚本.
TCL 提供time
命令来衡量 TCL 脚本的性能:
time script ?count?
这个命令重复执行script
脚本count
次. 再把花费的总时间的用count
除, 返回一次的平均执行时间, 单位为微秒. 如果没有count
参数, 就取执行一次的时间.
TCL 提供了trace
命令来跟踪一个或多个变量. 如果已经建立对一个变量的跟踪, 则不论什么时候对该变量进行了读, 写, 或删除操作, 就会激活一个对应的 Tcl 命令, 跟踪可以有很多的用途:
trace
命令的语法为: trace option ?arg arg ...?
其中option
有以下几种形式:
trace variable name ops command
: 这个命令设置对变量name
的一个跟踪: 每次当对变量name
作ops
操作时, 就会执行command
命令. name
可以是一个简单变量, 也可以是一个数组的元素或者整个数组.
ops
可以是以下几种操作的一个或几个的组合:
r
: 当变量被读时激活command
命令.w
: 当变量被写时激活command
命令.u
: 当变量被删除时激活command
命令. 通过用unset
命令可以显式的删除一个变量, 一个过程调用结束则会隐式的删除所有局部变量. 当删除解释器时也会删除变量, 不过这时跟踪已经不起作用了.当对一个变量的跟踪被触发时, TCL 解释器会自动把三个参数添加到命令command
的参数列表中. 这样command
实际上变成了command name1 name2 op
. 其中op
指明对变量作的什么操作. name1
和name2
用于指明被操作的变量: 如果变量是一个标量, 那么name1
给出了变量的名字, 而name2
是一个空字符串; 如果变量是一个数组的一个元素, 那么name1
给出数组的名字, 而name2
给出元素的名字; 如果变量是整个数组, 那么name1
给出数组的名字而name2
是一个空字符串. 为了让你很好的理解上面的叙述, 下面举一个例子:
上面的例子中, 对标量变量color
和数组元素a(length)
的写操作都会激活跟踪操作pvar
. 我们看到过程pvar
有三个参数, 这三个参数 TCL 解释器会在跟踪操作被触发时自动传递给pvar
. 比如如果我们对color
的值作了改变, 那么激活的就是pvar color "" w
. 我们敲入:
command
将在和触发跟踪操作的代码同样的上下文中执行: 如果对被跟踪变量的访问是在一个过程中, 那么command
就可以访问这个过程的局部变量. 比如:
对于被跟踪变量的读写操作, command
是在变量被读之后, 而返回变量的值之前被执行的. 因此, 我们可以在command
对变量的值进行改变, 把新值作为读写的返回值. 而且因为在执行command
时, 跟踪机制会临时失效, 所以在command
中对变量进行读写不会导致command
被递归激活. 例如:
如果对读写操作的跟踪失败, 即command
失败, 那么被跟踪的读写操作也会失败, 并且返回和command
同样的失败信息. 利用这个机制可以实现只读变量. 下面这个例子实现了一个值只能为正整数的变量:
如果一个变量有多个跟踪信息, 那么各个跟踪被触发的先后原则是: 最近添加的跟踪最先被触发, 如果有一个跟踪发生错误, 后面的跟踪就不会被触发.
trace vdelete name ops command
: 删除对变量name
的ops
操作的跟踪. 返回值为一个空字符串.
trace vinfo name
: 这个命令返回对变量的跟踪信息. 返回值是一个 list, list 的每个元素是一个子串, 每个子串包括两个元素: 跟踪的操作和与操作关联的命令. 如果变量name
不存在或没有跟踪信息, 返回一个空字符串.
rename
命令可以用来重命名或删除一个命令.
rename oldName newName
把命令oldName
改名为newName
, 如果newName
为空, 那么就从解释器中删除命令oldName
.
下面的脚本删除了文件 I/O 命令:
<div class="highlight" style="background: #f8f8f8"><pre style="line-height: 125%"><span style="color: #AA22FF; font-weight: bold">foreach</span> cmd <span style="color: #AA22FF; font-weight: bold">{</span><span style="color: #AA22FF">open</span> close read gets puts<span style="color: #AA22FF; font-weight: bold">}</span> <span style="color: #AA22FF; font-weight: bold">{</span> <span style="color: #AA22FF; font-weight: bold">rename</span> <span style="color: #B8860B">$cmd</span> <span style="color: #AA22FF; font-weight: bold">{}</span> <span style="color: #AA22FF; font-weight: bold">}</span> </pre></div>任何一个 Tcl 命令都可以被重命名或者删除, 包括内建命令以及应用中定义的过程和命令. 重命名一个内建命令可能会很有用, 例如, exit
命令在 Tcl 中被定义为立即退出过程. 如果某个应用希望在退出前获得清除它内部状态的机会, 那么可以这样做:
在这个例子中, exit
命令被重命名为exit.old
, 并且定义了新的exit
命令, 这个新命令作了应用必需的清除工作而后调用了改了名字的exit
命令来结束进程. 这样在已存在的描述程序中调用exit
时就会有机会做清理应用状态的工作.
unknown
命令unknown
命令的语法为: unknown cmdName ?arg arg ...?
当一个脚本试图执行一个不存在的命令时, TCL 解释器会激活unknown
命令, 并把那个不存在的命令的名字和参数传递给unknown
命令. unknown
命令不是 TCL 的核心的一部分, 它是由 TCL 脚本实现的, 可以在 TCL 安装目录的lib
子目录下的init.tcl
文件中找到其定义.
unknown
命令具有以下功能:
lib
子目录下的 TCL 脚本文件)中定义的过程, 则加载该库并重新执行命令, 这叫做“auto-loading”(自动加载), 关于它将在下一节描述.exec
命令来调用该程序, 这项特性叫做“auto-exec”(自动执行). 例如你输入dir
作为一个命令, unknown
会执行exec dir
来列出当前目录的内容, 如果这里的命令没有特别指明需要输入输出重定向, 则自动执行功能会使用当前 Tcl 应用所拥有的标准输入输出流, 以及标准错误流, 这不同于直接调用exec
命令, 但是提供了在 Tcl 应用中直接执行其他应用程序的方法.!!
则上一条刚执行过的命令会再执行一遍. 下一章将详细讲述该功能.如果你不喜欢unknown
的缺省的行为, 你也可以自己写一个新版本的unknown
或者对库中已有unknown
的命令进行扩展以增加某项功能. 如果你不想对未知命令做任何处理, 也可以删除unknown
, 这样当调用到未知命令的时候就会产生错误.
在unknown
过程中一项非常有用的功能就是自动加载, 自动加载功能允许你编写一组 Tcl 过程放到一个脚本文件中, 然后把该文件放到库目录之下, 当程序调用这些过程的时候, 第一次调用时由于命令还不存在就会进入unknown
命令, 而unknown
则会找到在哪个库文件中包含了这个过程的定义, 接着会加载它, 再去重新执行命令, 而到下次使用刚才调用过的命令的时候, 由于它已经存在了, 从而会正常的执行命令, 自动加载机制也就不会被再次启动.
自动加载提供了两个好处. 首先, 你可以把有用的过程建立为过程库, 而你无需精确知道过程的定义到底在哪个源文件中, 自动加载机制会自动替你寻找, 第二个好处在于自动加载是非常有效率的, 如果没有自动加载机制你将不得不在 TCL 应用的开头使用source
命令来加载所有可能用到的库文件, 而应用自动加载机制, 应用启动时无需加载任何库文件, 而且有些用不到的库文件永远都不会被加载, 既缩短了启动时间又节省了内存.
使用自动加载只需简单的按下面三步来做:
第一, 在一个目录下创建一组脚本文件作为库, 一般这些文件都以.tcl
结尾. 每个文件可以包含任意数量的过程定义. 建议尽量减少各脚本文件之间的关联, 让相互关联的过程位于同一个文件中. 为了能够让自动加载功能正确运行, proc
命令定义一定要顶到最左边, 并且与函数名用空格分开, 过程名保持与proc
在同一行上.
第二步, 为自动加载建立索引. 启动 Tcl 应用比如tclsh
, 调用命令auto_mkindex dir pattern
, 第一个参数是目录名, 第二个参数是一个模式. auto_mkindex
在目录dir
中扫描文件名和模式pattern
匹配的文件, 并建立索引以指出哪些过程定义在哪些文件中, 并把索引保存到目录dir
下一个叫tclindex
的文件中. 如果修改了文件或者增减过程, 需要重新生成索引.
第三步是在应用中设置变量auto_path
, 把存放了希望使用到的库所在的目录赋给它. auto_path
变量包含了一个目录的列表, 当自动加载被启动的时候, 会搜索auto_path
中所指的目录, 检查各目录下的tclindex
文件来确认过程被定义在哪个文件中. 如果一个函数被定义在几个库中, 则自动加载使用在auto_path
中靠前的那个库.
例如, 若一个应用使用目录/usr/local/tcl/lib/shapes
下的库, 则在启动描述中应增加:
set auto_path [linsert $auto_path 0 /usr/local/tcl/lib/shapes]
这将把/usr/local/tcl/lib/shapes
作为起始搜索库的路径, 同时保持所有的 Tcl/Tk 库不变, 但是在/usr/local/tcl/lib/shapes
中定义的过程具有更高的优先级, 一旦一个含有索引的目录加到了auto_path
中, 里面所有的过程都可以通过自动加载使用了.
这部分内容主要描述TCL的历史机制, 涉及到对以前执行过的命令的应用. 历史机制在一个列表中保留了最近执行过的命令, 使你不必重新敲入命令, 还可以对以前的命令进行修改以创建新的命令而不必重新输入新的命令, 特别是在命令较长时更加方便.
history
命令的格式为: history ?option? ?arg arg ...?
其中option
可为add
, change
, clear
, event
, info
, keep
, nextid
, 或者redo
. 老版本中有substitute
和words
, 现在的版本(8.0以后)中被删掉了, 增添了clear
. 下面一一介绍.
history
和history info
相同, 显示以前执行过的命令和序号, 如果执行过的命名个数超过了历史记录列表允许的最大的数量, 则只能按最大数量显示最近执行过的命令.
注意: history
命令本身在历史记录列表中也占了一条, 例如, 原来只有一条命令set a 123
, 现在输入history
, 则显示出两条历史记录:
history add command ?exec?
: 在历史记录列表中加一条命令, 如果有exec
选项, 则执行该命令, 并返回结果; 如果没指定exec
选项, 则返回空字符串作为结果. 其中添加的新命令要用双引号或花括号括上. 如:
history change newValue ?event?
: 用newValue
替代序号为event
的命令, 同时历史记录中的命令被改写. 如没指定event
则替换当前命令. 如:
history clear
: 清除历史记录列表的内容, 但记录列表允许的最大记录数这一属性仍然保留. 例如, 如果用history keep 50
把最大记录数改变为50, history clear
后记录内容空了, 但最大记录数仍为50.
history event ?event?
: 其中event
为历史事件的序号, 返回该序号的命令行, 如果没指定event
则返回上一条命令行. 如:
history info ?count?
: 没有count
参数时和history
命令一样, 有count
参数时返回最近执行的count
个命令.
history keep ?count?
: 把历史记录列表允许的最大数量设置为count
. 系统最初的最大记录为20.
history nextid
: 返回下一条将要添加到历史记录列表中的命令的序号. 例:
history redo ?event?
: 重新执行记录列表中序号为event
的命令. event
缺省为-1.
快捷键操作
!!
: 同命令history redo
相同.! event
: 同命令history redo event
相同. 这两个快捷键操作对应上一节unknown
命令的第3个功能.这篇文章是《TCL的使用》和《TCL培训教程》的补充和修订, 并加入了很多新内容. 其中第9、10、11、12章是新加的内容, 新加的各个章节是北研测试部TCL兴趣小组各个成员共同努力的结果: 第9、12章由付剑仲完成, 第10章杜祥宇完成, 第11章由邓沈鸿完成, 最后由我对各个章节进行了整理和修改, 统一组稿.
本文基本上介绍了TCL的各个方面, 特别对使用C\C++语言扩展TCL命令作了详尽的描述, 这是所有的参考书上难以找到的内容. 参照本文的例子, 用户完全可以写出自己的TCL扩展命令. 希望这篇文章能对推广在测试部使用TCL起一些推动作用.
学习一门计算机语言, 从根本上来说还是要上机实习, 希望测试部所有员工大家都能安装上 TCL, 加以实习, 在应用的基础上才能进一步提高. 如果需要一些本文中没有的内容, 可以查阅 TCL 自带的帮助.
A regular expression describes strings of characters. It's a pattern that matches certain strings and doesn't match others.
Regular expressions, as defined by POSIX, come in two flavors: extended REs and basic REs. EREs are roughly those of the traditional egrep, while BREs are roughly those of the traditional ed. This implementation adds a third flavor, advanced REs, basically EREs with some significant extensions.
This manual page primarily describes AREs. BREs mostly exist for backward compatibility in some old programs; they will be discussed at the end. POSIX EREs are almost an exact subset of AREs. Features of AREs that are not present in EREs will be indicated.
Tcl regular expressions are implemented using the package written by Henry Spencer, based on the 1003.2 spec and some (not quite all) of the Perl5 extensions (thanks, Henry!). Much of the description of regular expressions below is copied verbatim from his manual entry.
An ARE is one or more branches, separated by |
, matching anything that matches any of the branches.
A branch is zero or more constraints or quantified atoms, concatenated. It matches a match for the first, followed by a match for the second, etc; an empty branch matches the empty string.
A quantified atom is an atom possibly followed by a single quantifier. Without a quantifier, it matches a match for the atom. The quantifiers, and what a so-quantified atom matches, are:
字符 意义
* a sequence of 0 or more matches of the atom
+ a sequence of 1 or more matches of the atom
? a sequence of 0 or 1 matches of the atom
{m} a sequence of exactly m matches of the atom
{m,} a sequence of m or more matches of the atom
{m,n} a sequence of m through n (inclusive) matches of the atom; m may not exceed n
*? +? ??
{m}? {m,}?
{m,n}? non-greedy quantifiers, which match the same possibilities, but prefer the smallest number rather than the largest number of matches (see MATCHING)
The forms using { and } are known as bounds. The numbers m and n are unsigned decimal integers with permissible values from 0 to 255 inclusive.
An atom is one of:
字符 意义
(re) (where re is any regular expression) matches a match for re, with the match noted for possible reporting
(?:re) as previous, but does no reporting
() matches an empty string, noted for possible reporting
(?:) matches an empty string, without reporting
[chars] a bracket expression, matching any one of the chars (see BRACKET EXPRESSIONS for more detail)
. matches any single character
\k where k is a non-alphanumeric character) matches that character taken as an ordinary character, e.g. \\ matches a backslash character
\c where c is alphanumeric (possibly followed by other characters), an escape (AREs only), see ESCAPES below
{ when followed by a character other than a digit, matches the
left-brace character `{`; when followed by a digit, it is the beginning of a bound (see above)
x where x is a single character with no other significance, matches that character.
A constraint matches an empty string when specific conditions are met. A constraint may not be followed by a quantifier. The simple constraints are as follows; some more constraints are described later, under ESCAPES.
字符 意义
^ matches at the beginning of a line
$ matches at the end of a line
(?=re) positive lookahead (AREs only), matches at any point where a substring matching re begins
(?!re) negative lookahead (AREs only), matches at any point where no substring matching re begins
The lookahead constraints may not contain back references (see later), and all parentheses within them are considered non-capturing.
An RE may not end with \
.
A bracket expression is a list of characters enclosed in []
. It normally matches any single character from the list (but see below). If the list begins with ^
, it matches any single character (but see below) not from the rest of the list.
If two characters in the list are separated by -
, this is shorthand for the full range of characters between those two (inclusive) in the collating sequence, e.g. [0-9] in ASCII matches any decimal digit. Two ranges may not share an endpoint, so e.g. a-c-e is illegal. Ranges are very collating-sequence-dependent, and portable programs should avoid relying on them.
To include a literal ] or - in the list, the simplest method is to enclose it in [. and .] to make it a collating element (see below). Alternatively, make it the first character (following a possible ^
), or (AREs only) precede it with \
. Alternatively, for -
, make it the last character, or the second endpoint of a range. To use a literal - as the first endpoint of a range, make it a collating element or (AREs only) precede it with\
. With the exception of these, some combinations using [ (see next paragraphs), and escapes, all other special characters lose their special significance within a bracket expression.
Within a bracket expression, a collating element (a character, a multi-character sequence that collates as if it were a single character, or a collating-sequence name for either) enclosed in [. and .] stands for the sequence of characters of that collating element. The sequence is a single element of the bracket expression's list. A bracket expression in a locale that has multi-character collating elements can thus match more than one character. So (insidiously), a bracket expression that starts with ^ can match multi-character collating elements even if none of them appear in the bracket expression! (Note: Tcl currently has no multi-character collating elements. This information is only for illustration.)
For example, assume the collating sequence includes a ch multi-character collating element. Then the RE [[.ch.]]*c (zero or more ch's followed by c) matches the first five characters of chchcc
. Also, the RE [^c]b matches all of chb
(because [^c] matches the multi-character ch).
Within a bracket expression, a collating element enclosed in [= and =] is an equivalence class, standing for the sequences of characters of all collating elements equivalent to that one, including itself. (If there are no other equivalent collating elements, the treatment is as if the enclosing delimiters were [.
and .]
.) For example, if o and ?are the members of an equivalence class, then [[=o=]]
, [[=?]]
, and [o
are all synonymous. An equivalence class may not be an endpoint of a range. (Note: Tcl currently implements only the Unicode locale. It doesn't define any equivalence classes. The examples above are just illustrations.)
Within a bracket expression, the name of a character class enclosed in [: and :] stands for the list of all characters (not all collating elements!) belonging to that class. Standard character classes are:
字符 意义
alpha A letter.
upper An upper-case letter.
lower A lower-case letter.
digit A decimal digit.
xdigit A hexadecimal digit.
alnum An alphanumeric (letter or digit).
print An alphanumeric (same as alnum).
blank A space or tab character.
space A character producing white space in displayed text.
punct A punctuation character.
graph A character with a visible representation.
cntrl A control character.
A locale may provide others. (Note that the current Tcl implementation has only one locale: the Unicode locale.) A character class may not be used as an endpoint of a range.
There are two special cases of bracket expressions: the bracket expressions [[:<:]]
and [[:>:]]
are constraints, matching empty strings at the beginning and end of a word respectively. A word is defined as a sequence of word characters that is neither preceded nor followed by word characters. A word character is an alnum character or an underscore (_). These special bracket expressions are deprecated; users of AREs should use constraint escapes instead (see below).
Escapes (AREs only), which begin with a \ followed by an alphanumeric character, come in several varieties: character entry, class shorthands, constraint escapes, and back references. A \ followed by an alphanumeric character but not constituting a valid escape is illegal in AREs. In EREs, there are no escapes: outside a bracket expression, a \ followed by an alphanumeric character merely stands for that character as an ordinary character, and inside a bracket expression, \ is an ordinary character. (The latter is the one actual incompatibility between EREs and AREs.)
Character-entry escapes (AREs only) exist to make it easier to specify non-printing and otherwise inconvenient characters in REs:
字符 意义
\a alert (bell) character, as in C
\b backspace, as in C
\B synonym for \ to help reduce backslash doubling in some applications where there are multiple levels of backslash processing
\cX (where X is any character) the character whose low-order 5 bits are the same as those of X, and whose other bits are all zero
\e the character whose collating-sequence name is `ESC`, or failing that, the character with octal value 033
\f formfeed, as in C
\n newline, as in C
\r carriage return, as in C
\t horizontal tab, as in C
\uwxyz (where wxyz is exactly four hexadecimal digits) the Unicode character U+wxyz in the local byte ordering
\Ustuvwxyz (where stuvwxyz is exactly eight hexadecimal digits) reserved for a somewhat-hypothetical Unicode extension to 32 bits
\v vertical tab, as in C are all available.
\xhhh (where hhh is any sequence of hexadecimal digits) the character whose hexadecimal value is 0xhhh (a single character no matter how many hexadecimal digits are used).
\0 the character whose value is 0
\xy (where xy is exactly two octal digits, and is not a back reference
(see below)) the character whose octal value is 0xy
\xyz (where xyz is exactly three octal digits, and is not a back reference
(see below)) the character whose octal value is 0xyz
Hexadecimal digits are 0-9
, a-f
, and A-F
. Octal digits are 0-7
.
The character-entry escapes are always taken as ordinary characters. For example, \135 is ] in ASCII, but \135 does not terminate a bracket expression. Beware, however, that some applications (e.g., C compilers) interpret such sequences themselves before the regular-expression package gets to see them, which may require doubling (quadrupling, etc.) the \
.
Class-shorthand escapes (AREs only) provide shorthands for certain commonly-used character classes:
缩写 代表的完整表达式
\d [[:digit:]]
\s [[:space:]]
\w [[:alnum:]_] (note underscore)
\D [^[:digit:]]
\S [^[:space:]]
\W [^[:alnum:]_] (note underscore)
Within bracket expressions, \d
, \s
, and \w
lose their outer brackets, and \D
,
\S
, and \W
are illegal. (So, for example, [a-c\d] is equivalent to [a-c[:digit:]]. Also, [a-c\D], which is equivalent to [a-c^[:digit:]]
, is illegal.)
A constraint escape (AREs only) is a constraint, matching the empty string if specific conditions are met, written as an escape:
字符 意义
\A matches only at the beginning of the string (see MATCHING, below, for how this differs from `^`)
\m matches only at the beginning of a word
\M matches only at the end of a word
\y matches only at the beginning or end of a word
\Y matches only at a point that is not the beginning or end of a word
\Z matches only at the end of the string (see MATCHING, below, for how this differs from `$`)
\m (where m is a nonzero digit) a back reference, see below
\mnn (where m is a nonzero digit, and nn is some more digits, and the decimal value mnn is not greater than the number of closing capturing parentheses seen so far) a back reference, see below
A word is defined as in the specification of [[:<:]]
and [[:>:]]
above. Constraint escapes are illegal within bracket expressions.
A back reference (AREs only) matches the same string matched by the parenthesized subexpression specified by the number, so that (e.g.) ([bc])\1 matches bb or cc but not bc
. The subexpression must entirely precede the back reference in the RE. Subexpressions are numbered in the order of their leading parentheses. Non-capturing parentheses do not define subexpressions.
There is an inherent historical ambiguity between octal character-entry escapes and back references, which is resolved by heuristics, as hinted at above. A leading zero always indicates an octal escape. A single non-zero digit, not followed by another digit, is always taken as a back reference. A multi-digit sequence not starting with a zero is taken as a back reference if it comes after a suitable subexpression (i.e. the number is in the legal range for a back reference), and otherwise is taken as octal.
In addition to the main syntax described above, there are some special forms and miscellaneous syntactic facilities available.
Normally the flavor of RE being used is specified by application-dependent means. However, this can be overridden by a director. If an RE of any flavor begins with ***:
, the rest of the RE is an ARE. If an RE of any flavor begins with ***=
, the rest of the RE is taken to be a literal string, with all characters considered ordinary characters.
An ARE may begin with embedded options: a sequence (?xyz) (where xyz is one or more alphabetic characters) specifies options affecting the rest of the RE. These
supplement, and can override, any options specified by the application. The available option letters are:
字符 意义
b rest of RE is a BRE
c case-sensitive matching (usual default)
e rest of RE is an ERE
i case-insensitive matching (see MATCHING, below)
m historical synonym for n
n newline-sensitive matching (see MATCHING, below)
p partial newline-sensitive matching (see MATCHING, below)
q rest of RE is a literal string, all ordinary characters
s non-newline-sensitive matching (usual default)
t tight syntax (usual default; see below)
w inverse partial newline-sensitive matching (see MATCHING, below)
x expanded syntax (see below)
Embedded options take effect at the ) terminating the sequence. They are available only at the start of an ARE, and may not be used later within it.
In addition to the usual (tight) RE syntax, in which all characters are significant, there is an expanded syntax, available in all flavors of RE with the -expanded switch, or in AREs with the embedded x option. In the expanded syntax, white-space characters are ignored and all characters between a # and the following newline (or the end of the RE) are ignored, permitting paragraphing and commenting a complex RE. There are three exceptions to that basic rule: a white-space character or #
preceded by \
is retained white space or #
within a bracket expression is retained white space and comments are illegal within multi-character symbols like the ARE (?:
or the BRE \(
Expanded-syntax white-space characters are blank, tab, newline, and any character that belongs to the space character class.
Finally, in an ARE, outside bracket expressions, the sequence (?#ttt)
(where ttt is any text not containing a )
) is a comment, completely ignored. Again, this is not allowed between the characters of multi-character symbols like (?:
. Such comments are more a historical artifact than a useful facility, and their use is deprecated; use the expanded syntax instead.
None of these metasyntax extensions is available if the application (or an initial ***= director) has specified that the user's input be treated as a literal string rather than as an RE.
In the event that an RE could match more than one substring of a given string, the RE matches the one starting earliest in the string. If the RE could match more than one substring starting at that point, its choice is determined by its preference: either the longest substring, or the shortest.
Most atoms, and all constraints, have no preference. A parenthesized RE has the same preference (possibly none) as the RE. A quantified atom with quantifier {m} or {m}? has the same preference (possibly none) as the atom itself. A quantified atom with other normal quantifiers (including {m,n} with m equal to n) prefers longest match. A quantified atom with other non-greedy quantifiers (including {m,n}? with m equal to n) prefers shortest match. A branch has the same preference as the first quantified atom in it which has a preference. An RE consisting of two or more branches connected by the | operator prefers longest match.
Subject to the constraints imposed by the rules for matching the whole RE, subexpressions also match the longest or shortest possible substrings, based on their preferences, with subexpressions starting earlier in the RE taking priority over ones starting later. Note that outer subexpressions thus take priority over their component subexpressions.
Note that the quantifiers {1,1} and {1,1}? can be used to force longest and shortest preference, respectively, on a subexpression or a whole RE.
Match lengths are measured in characters, not collating elements. An empty string is considered longer than no match at all. For example, bb matches the three middle characters of abbbc
, (week|wee)(night|knights) matches all ten characters of weeknights
, when (.). is matched against abc the parenthesized subexpression matches all three characters, and when (a)* is matched against bc both the whole RE and the parenthesized subexpression match an empty string.
If case-independent matching is specified, the effect is much as if all case distinctions had vanished from the alphabet. When an alphabetic that exists in multiple cases appears as an ordinary character outside a bracket expression, it is effectively transformed into a bracket expression containing both cases, so that x becomes [xX]
. When it appears inside a bracket expression, all case counterparts of it are added to the bracket expression, so that [x] becomes [xX] and [^x] becomes [^xX]
.
If newline-sensitive matching is specified, . and bracket expressions using ^ will never match the newline character (so that matches will never cross newlines unless the RE explicitly arranges it) and ^ and $ will match the empty string after and before a newline respectively, in addition to matching at beginning and end of string respectively. ARE \A and \Z continue to match beginning or end of string only. If partial newline-sensitive matching is specified, this affects . and bracket expressions as with newline-sensitive matching, but not ^ and $
.
If inverse partial newline-sensitive matching is specified, this affects ^ and $ as with newline-sensitive matching, but not . and bracket expressions. This isn't very useful but is provided for symmetry.
No particular limit is imposed on the length of REs. Programs intended to be highly portable should not employ REs longer than 256 bytes, as a POSIX-compliant implementation can refuse to accept such REs.
The only feature of AREs that is actually incompatible with POSIX EREs is that \ does not lose its special significance inside bracket expressions. All other ARE features use syntax which is illegal or has undefined or unspecified effects in POSIX EREs; the *** syntax of directors likewise is outside the POSIX syntax for both BREs and EREs.
Many of the ARE extensions are borrowed from Perl, but some have been changed to clean them up, and a few Perl extensions are not present. Incompatibilities of note include \b
, \B
, the lack of special treatment for a trailing newline, the addition of complemented bracket expressions to the things affected by newline-sensitive matching, the restrictions on parentheses and back references in lookahead constraints, and the longest/shortest-match (rather than first-match) matching semantics.
The matching rules for REs containing both normal and non-greedy quantifiers have changed since early beta-test versions of this package. (The new rules are much simpler and cleaner, but don't work as hard at guessing the user's real intentions.) Henry Spencer's original 1986 regexp package, still in widespread use (e.g., in pre-8.1 releases of Tcl), implemented an early version of today's EREs. There are four incompatibilities between regexp's near-EREs (`RREs' for short) and AREs. In roughly increasing order of significance:
In AREs, \ followed by an alphanumeric character is either an escape or an error, while in RREs, it was just another way of writing the alphanumeric. This should not be a problem because there was no reason to write such a sequence in RREs.
{ followed by a digit in an ARE is the beginning of a bound, while in RREs, { was always an ordinary character. Such sequences should be rare, and will often result in an error because following characters will not look like a valid bound.
In AREs, \ remains a special character within []
, so a literal \ within [] must be written \\
. \ also gives a literal \ within [] in RREs, but only truly paranoid programmers routinely doubled the backslash.
AREs report the longest/shortest match for the RE, rather than the first found in a specified search order. This may affect some RREs which were written in the expectation that the first match would be reported. (The careful crafting of RREs to optimize the search order for fast matching is obsolete (AREs examine all possible matches in parallel, and their performance is largely insensitive to their complexity) but cases where the search order was exploited to deliberately find a match which was not the longest/shortest will need rewriting.)
BREs differ from EREs in several respects. |
, +
, and ? are ordinary characters and there is no equivalent for their functionality. The delimiters for bounds are { and \}
, with { and } by themselves ordinary characters. The parentheses for nested subexpressions are ( and \)
, with ( and ) by themselves ordinary characters. ^ is an ordinary character except at the beginning of the RE or the beginning of a parenthesized subexpression, $ is an ordinary character except at the end of the RE or the end of a parenthesized subexpression, and * is an ordinary character if it appears at the beginning of the RE or the beginning of a parenthesized subexpression (after a possible leading ^
). Finally, single-digit back references are available, and \< and > are synonyms for [[:<:]] and [[:>:]] respectively; no other escapes are available.