Tcl's
lsort command lets you sort a list - and that can be a list of the keys of an array. You can't sort the array, but once you have the list of keys you can sort
that and use it to iterate through the array in any order that you like.
As everything (except an array) is a string in Tcl, when you sort a list the language defaults to an asciibetic sort - which you can vary with the -integer or -real options to lsort. And if you want to specify another criterion, you can do that too, using the -command option to specify the name of a proc that returns -1, 0 or +1 to indicate the ordering of two input records.
There's examples of all three following - I'm sorting a list of keys from an array asciibetically, numerically, and by the value that the key points to:
proc report {order say} {
puts $say
global stop
foreach pl $order {
puts "$pl: $stop($pl)"
}
}
#
proc byp {a b} {
global stop
return [string compare $stop($a) $stop($b)]
}
#
set stop(1) Bath
set stop(2) Bristol
set stop(6) Keynsham
set stop(3) Easterton
set stop(4) unused
set stop(5) unused
set stop(10) London
set stop(11) "The West"
#
set bystop [lsort [array names stop]]
set properbystop [lsort -integer [array names stop]]
set byplace [lsort -command byp [array names stop]]
#
report $bystop "By Ascii stop"
report $properbystop "By numeric stop"
report $byplace "By place name"
Here are the results:
earth-wind-and-fire:~/oct07/camb grahamellis$ tclsh allsorts
By Ascii stop
1: Bath
10: London
11: The West
2: Bristol
3: Easterton
4: unused
5: unused
6: Keynsham
By numeric stop
1: Bath
2: Bristol
3: Easterton
4: unused
5: unused
6: Keynsham
10: London
11: The West
By place name
1: Bath
2: Bristol
3: Easterton
6: Keynsham
10: London
11: The West
4: unused
5: unused
earth-wind-and-fire:~/oct07/camb grahamellis$ (written 2007-10-24, updated 2007-10-25)
Associated topics are indexed under
T206 - Tcl/Tk - Lists [3583] Expanding a list of parameters in Tcl - {*} and eval - (2012-01-17)
[3582] Tcl collections - lists, dicts and array - (2012-01-16)
[3415] User defined sorting and other uses of callbacks in Tcl and Tk - (2011-09-02)
[3394] The difference between lists and strings - Tcl - (2011-08-16)
[3285] Extracting data from a string / line from file - Tcl - (2011-05-10)
[2472] split and join in tcl and expect - (2009-10-23)
[2468] What are Tcl lists? - (2009-10-22)
[1601] Replacing the last comma with an and - (2008-04-04)
[1402] Tcl - append v lappend v concat - (2007-10-23)
[1334] Stable sorting - Tcl, Perl and others - (2007-09-06)
[1283] Generating traffic for network testing - (2007-07-29)
[1282] Stringing together Tcl scripts - (2007-07-29)
[781] Tcl - lappend v concat - (2006-06-27)
[463] Splitting the difference - (2005-10-13)
[144] Tcl sandwich - lists in Tcl - (2004-12-08)
T208 - Tcl/Tk - Arrays and dicts [3192] Tcl - Some example of HOW TO in handling data files and formats - (2011-03-04)
[2466] Tcl - passing arrays and strings in and back out of procs - (2009-10-22)
[1614] When an array is not an array - (2008-04-17)
[1427] Arrays in Tcl - a demonstration - (2007-11-10)
[779] The fragility of pancakes - and better structures - (2006-06-26)
[122] Passing arrays to procs in Tcl - (2004-11-18)
Some other Articles
What is Expect?Wireless hotel tips - FTP and Skype connections failingReading from another process in Tcl (pipes and sockets)Away or home - which do I prefer?Sorting in Tcl - lists and arraysTcl - global, upvar and uplevel.Square Bracket protection in TclTcl - using [] or {} for conditions in an if (and while)Dark Dawn