.
.
名称
lindex - 从列表中获得一个元素语法
lindex list ?index...?描述
lindex命令接受一个参数列表list,可以接受0个或者多个index参数,在多个参数的情况下,参数可以是单独的一次排列,也可以是在一个列表当中。如果不指定index参数:
lindex list或者
lindex list {}
这种情况下返回lindex列表本身。
当只有一个单独的元素时,lindex命令返回list列表中的第index个元素。替代时元素从0开始(也就是说索引0就是指列表的第一个元素),如果index是负数或者大于列表长度就返回一个空字符串。解释器在解释每一个index值时和string index命令相同,都支持单个和多个index参数。
如果指定了多个index,将会选择列表的子列表中的元素。例如
lindex $a 1 2 3或者
lindex $a {1 2 3}
与下面的命令相同
lindex [lindex [lindex $a 1] 2] 3
示例
lindex {a b c}
→ a b c
lindex {a b c} {}
→ a b c
lindex {a b c} 0
→ a
lindex {a b c} 2
→ c
lindex {a b c} end
→ c
lindex {a b c} end-1
→ b
lindex {{a b c} {d e f} {g h i}} 2 1
→ h
lindex {{a b c} {d e f} {g h i}} {2 1}
→ h
lindex {{{a b} {c d}} {{e f} {g h}}} 1 1 0
→ g
lindex {{{a b} {c d}} {{e f} {g h}}} {1 1 0}
→ g
本文详细介绍了Tcl编程语言中的lindex命令,该命令用于从列表中获取指定索引位置的元素。文章通过一系列示例展示了如何使用lindex来访问一维或多维列表中的元素,并解释了索引的正向和反向计数方式。

286

被折叠的 条评论
为什么被折叠?



