/
table:remove()
table:remove()
This is a helpful way to remove items in a list table. See Lua table as list.
You use it like this:
local MyTable = {1,4,6,7,9,10}
trace(MyTable)
table.remove(MyTable, 3)
trace(MyTable)
Try the above code fragment in the Developing in the Translator
, multiple selections available,
Related content
Bulk Delete
Bulk Delete
More like this
Lua table as list
Lua table as list
Read with this
Bulk Clear Queue
Bulk Clear Queue
More like this
Lua tables as dictionaries
Lua tables as dictionaries
Read with this
Merging Records
Merging Records
More like this
String:split()
String:split()
More like this