我有类似的字符串NYMEX UTBPI
。在这里,我想获取 NYMEX 和 UTBPI 中间的空白索引,然后从该索引到最后一个索引,我想剪切子字符串。在这种情况下,我的子字符串将是UTBPI
我在下面使用
set part1 [substr $line [string index $line " "] [string index $line end-1]]
我正在低于错误。
wrong # args: should be "string index string charIndex"
while executing
"string index $line "
("foreach" body line 2)
invoked from within
"foreach line $pollerName {
set part1 [substr $line [string index $line ] [string index $line end-1]]
puts $part1
puts $line
}"
(file "Config.tcl" line 9)
你能给我一些关于如何进行其他字符串操作的想法吗?任何好的链接。