NAVIGATION
- Edit this page ..............: http://wiki.tcl.tk/edit/12777@
- Home to the ...............: Answered Questions Index Page
- Back to ......................: -
- Forward to .................: Answered Questions On: Basic TCL
- Ask New Questions at ..: Ask, and it shall be given.
- Recent Changes ..........: http://wiki.tcl.tk/4
TABLE OF CONTENTS (Advanced Tcl):
- Lists - The Lrange Command - Complex Data Structures Using Lists
- How Do I Pass A Variable/Value To A Child Interpreter?
- Tcl String Command Syntax/Usage: Concat - Subst - Args
SEE ALSO:
- ...
Lists - The Lrange Command - Complex Data Structures Using Lists2003/01/20Is there a real way to do the following?
proc lranges {list args} { set start 0 set newlist {} foreach size $args { set end [expr {$start + $size - 1}] lappend newlist [lrange $list $start $end] incr start $size } if {$start <= [llength $list]} { lappend newlist [lrange $list $start end] } return $newlist } % lranges "1 2 3 4 5 6 7" 2 3 5 {1 2} {3 4 5} {6 7}I was getting tired of parsing things with continual lranges and I kept wishing I could foreach over a however many elements I wanted to grab for the next variable instead of just one.Not sure this has a good default behavior, and I should probably error handle non integer args.BR 2004-01-21 - Can you give an real example of what you want to do? Are you looking for something like:
foreach {label value} {firstname "Benny" lastname "Riefenstahl"} { # Do something with $label and $value }sheila 2004-01-21 - I'd like to be able to do this:
foreach {opcode control data1 data2} {01 02 89 24 35 87 52 45 38 48} {break}opcode will be 01, control 02, data1 {89 24 35 87 52}, and data2 {45 38 48}assuming that I know the byte count of each field. iow:
set message {01 02 89 24 35 87 52 45 38 48} foreach {opcode control data1 data2} [lranges $message 1 1 5] {break}instead of
set opcode [lrange $message 0 0] set control [lrange $message 1 1] set data1 [lrange $message 2 6] set data2 [lrange $message 7 end]There are more complicated uses (like with a byte count field, and then foreaching based on that), but is this example sufficient?BR 2004-01-22 - To answer the original question, no I don't think there is a built-in solution for this. But if you are ok with the concept, your proc is o.k., isn't it? I personally would probably prefer to write it out as you do above, unless I have lots of repeating code in a specific module.Notes:
- In the abstract there are no "byte counts" in this, unless the numbers are byte values in your specific example. If you are starting out with binary data, you may want to consider more involved uses of binary scan.
- The first two items in your example results are logically lists. This will make a difference with more complicated list items. In theory Tcl is even allowed to represent these lists differently in this very example today, e.g. as {01} {02}. Although it is unlikely Tcl will ever change here, as this would expose bugs in too many applications. ;-)
Tcl String Command Syntax/Usage: Concat - Subst - Args14/Aug/2003I am trying to define a data structure recursively and can't get it to work.Any suggestions?The idea is from: http://users.pandora.be/koen.vandamme1/papers/tcl_fileformats/tcl_fileformats.html

proc mycommand { args } { foreach { a b } [concat $args] { puts "A=$a" puts "B=$b" } } mycommand { atts { { atta bttb } { cttc dttd } } pins { { pin4 four } { pin5 five } } }tje Aug 20 2003 - Try this:
proc mycommand {in} {foreach {a b} $in { puts "A=$a" ; puts "b=$b" } }Remember that args is a special argument that wraps multiple arguments into one.