Consider the example code below, I need to convert the "nvlist" back to an array. How can i do this?
for {set i 0} { $i < 3} {incr i} {
set color($i) $i
}
set nvList [array get color]
After that, I have data in nvlist and I need to change that back to an array. How can i do this?
source
to share