3

我在 tcl 8.0 版本中运行此功能。

proc test {} {
    set owner 212549316
    set val [regexp {[0-9]{9}} $owner]
    puts $val
}

tcl 8.6 中的相同代码,输出为1但在 tcl 8.0 中为0. 我正在检查字符串是否仅包含 tcl 8.0 中的 9 位数字。

任何帮助如何使它在 tcl 8.0 版本中工作。

4

1 回答 1

4

在 Tcl 8.0中,不支持绑定(或限制)量词。

要匹配 Tcl 8.0 中的 9 个数字,您必须重复[0-9]9 次:

set val [regexp {[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]} $owner]

从 Tcl 8.1 开始支持绑定量词,并引入了高级正则表达式语法。

Tcl 8.0 中可用的基本正则表达式语法仅包括:

.    Matches any character.
*    Matches zero or more instances of the previous pattern item.
+    Matches one or more instances of the previous pattern item.
?    Matches zero or one instances of the previous pattern item.
( )  Groups a subpattern. The repetition and alternation operators apply to the preceding subpattern.
|    Alternation.
[ ]  Delimit a set of characters. Ranges are specified as [x-y]. If the first character in the set is ^, then there is a match if the remaining characters in the set are not present.
^    Anchor the pattern to the beginning of the string. Only when first.
$    Anchor the pattern to the end of the string. Only when last.

请参阅Tcl 和 Tk 中的实用编程,第 3 版。© 1999, Brent Welch, Ch 11, p. 146 .

于 2016-05-30T10:05:05.217 回答