1

我正在尝试将以下两个元素作为一个列表加入尝试过 concat 、 join 、 lappend 等,但它不起作用

1134-1215 { W.1.Agg-251 ethernet4/28 island ethernet9/7}

我需要 (links)list 的输出,其第一个元素是 1134 ,第二个元素是 W.1.Agg-251 等

 for {set index 0 } { $index <=328 } {incr index} {
     lappend links   [lindex $result2 $index] [lindex $list4 $index]
 }

 puts "===>$links"

其中结果 2 是像 {1134-1150 1151-1600 .. } 这样的列表,而 list4 是像 {W.1.Agg-251 ethernet4/28 island ethernet9/7 X.1.Agg-251 ethernet4/29 island ethernet9 这样的列表/9... }

4

1 回答 1

1

你可能打算做类似的事情

set links [concat $links [lindex $result2 $index] [lindex $list4 $index]]
于 2013-01-09T00:44:12.740 回答