top of page
- API -
dofile(reaper.AZ_GetLuaInitPath())
list = {"A","B","C","D","E","F"}
for i = 1,6 do
Msg(list[i])
end
table.remove(list)
for i = 1,6 do
Msg(list[i])
end
table.remove(list,2)
for i = 1,6 do
Msg(list[i])
end
- API Detail-
No preparation required
- SCRIPT -
dofile(reaper.AZ_GetLuaInitPath())
Loading the initial settings for the Lua version of RIGDOCKS
list = {"A","B","C","D","E","F"}
for i = 1,6 do
Msg(list[i])
end
Define an array.
Output the values of array indexes (1 to 6) to the console.
table.remove(list)
Remove the end of the array.
for i = 1,6 do
Msg(list[i])
end
Output the values of array indexes (1 to 6) to the console.
table.remove(list,2)
Delete the value at index (2) of the array.
for i = 1,6 do
Msg(list[i])
end
- SCRIPT -
Beginner
AZ_tableRemove
Delete a part of an array
bottom of page