3
votes
How to efficiently get rest of a Tcl list starting from an index?
Jeff answered your actual question well. That being said, there is one thing worth noting. Getting the length of a list (that's actually a list under the hood) is of O(1), meaning it takes no real …
0
votes
How to do apply in Tcl 8.4?
Short answer:
If you have the command name in a variable, you can run it by placing the variable as the first word of the line:
set mycommand puts
$mycomman …
3
votes
Passing list to Tcl procedure
It depends on the version of Tcl you're using, but:
For 8.5:
set mylist {a b c}
myprocedure option1 option2 {*}$mylist
For 8.4 and below:
set mylis …
4
votes
Tcl for getting ASCII code for every character in a string
The following code should work:
set data {CREATE TABLE}
foreach char [split $data ""] {
lappend output [scan $char %c]
}
set output ;# 67 82 69 65 84 69 32 84 65 66 76 69
…
