I have this structure array which is in tcl
A={1 2 3} { 4 5 6 } {7 8 9} {1 4 10}
I would like to get the structure indices which contain the number 4 which should be 2 , and 4 in A; how could I do it?
Also after i was able to get that indices , i'd like to remove those structures so that
A={1 2 3}{7 8 9}
How could I do that ?
Thanks !
[lmap]
can help with that.[continue]
allows you to skip the item: