lua table remove code example
Example 1: lua How to remove index from table
table.remove(table, index:num)
Example 2: lua clear table
for i=1, #tablevar do
tablevar[i] = nil
end
Example 3: lua table insert
t = { "the", "quick", "brown", "fox" }
table.insert (t, 2, "very") -- new element 2
table.insert (t, "jumped") -- add to end of table
table.foreachi (t, print)
-->
1 the
2 very
3 quick
4 brown
5 fox
6 jumped