我有一个格式如下的文件:
some text
some more text
. . .
. . .
data {
1 2 3 5 yes 10
2 3 4 5 no 11
}
some text
some text
我想data
使用以下过程使用正则表达式提取文件的一部分:
proc ExtractData {fileName} {
set sgd [open $fileName r]
set sgdContents [read $sgd]
regexp "data \\{(?.*)\\}" $sgdContents -> data
puts $data
}
但这给出了以下错误:
couldn't compile regular expression pattern: quantifier operand invalid
我无法弄清楚正则表达式有什么问题。任何帮助将不胜感激。