0

我想查找特定文件中是否存在 If 块。

我有一个文件new.tcl如下:

if { [info exists var1] } {
  if { "$var1" == "val1" } {
    puts "var1 has value as val1"
  }
} else {
  puts "var1 does not exists"
}

我在另一个 Tcl 函数中读取此文件并尝试通过regexp函数匹配 if 块,并且此函数中使用的值和变量是变量。

我的实现文件看起来像,

set valueDict [list 'var1' 'val1']
set valDictLen [llength $valueDict]
set myFilePtr [open "new.tcl" "r"]
set myFileContent [read $myFilePtr]
close $myFilePtr

for { set index 0 } { $index < $valDictLen } { incr index 2 } {
  set currVar [lindex $valueDict $index]
  set currVal [lindex $valueDict [expr $index + 1]]

  # I actually want to match the entire if block content here
  if { ![regexp "if \{ \[info exists $currVal\] \}" $myFileContent] } {
    puts "Code not present"
  }
}
4

2 回答 2

-1

尝试:

if { ![regexp "if *{ *[info exists $currVal] *}" $myFileContent] } {
    puts "Code not present"
}

当您在 TCL 正则表达式中使用 " 时,使用 [ 表示要遵循的命令/关键字。

于 2017-03-09T11:15:03.197 回答
-1
SBORDOLO-M-V1VG:Downloads sbordolo$ cat t3

set var1 "value"
set currVal "var1"
#set myFileContent "\[info exists var1\]"
set myFileContent {[info exists var1]}

if { ![regexp "[info exists $currVal]" $myFileContent] } {
    puts "Code not present"
} else {
    puts "Code present"
}
SBORDOLO-M-V1VG:Downloads sbordolo$ 
SBORDOLO-M-V1VG:Downloads sbordolo$ tclsh t3
Code present
SBORDOLO-M-V1VG:Downloads sbordolo$ 
于 2017-03-09T14:06:09.810 回答