如何在不使用“/”字符的情况下从用户那里获取带有特殊字符的输入并将其视为字符串?
例如:
假设有一个proc a {input} {...}
获取以下字符串的过程"classA.arr2[0].classB"
。
如果我没有在“[0]”旁边添加字符“/”,它会认为 0 是一个命令/过程。
我会更清楚地说明:
我添加了一个代码,它是Class A
评估参数的方法的一部分。
public method config {args} {
if {[llength $args] > 1} {
foreach {option value} $args {
if {[string length $option] == 0 || [string length $value] == 0} {
puts "Runtime error::Bad Input: option flag or value is missing"
return ""
}
switch -- $option {
-scope {
if { [regexp {[A-Za-z]+} $value] } {
set _scope $value
} else {
puts "Runtime error::Bad Input: BAD SCOPE FORMAT"
return ""
}
} ...
现在我想运行以下代码:
A a
a config -scope "string1.string2[0].string3"