hi there!
I have a problem:
a list:
set list {a b c}
how to delete the entry "b", that the list only looks like this:
{a c}
thanks for any help!
Code: Select all
set list [list a b c]
set list [lraplce $list 1 1]