top of page
10
Beginner
AZ_tableRemove
配列の一部を指定して削除
RANK
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
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
function Msg(param)
reaper.ShowConsoleMsg(tostring(param).."\n")
end
Msg コンソール出力関数をセット
list = {"A","B","C","D","E","F"}
for i = 1,6 do
Msg(list[i])
end
配列を定義する。
配列のインデックス(1~6)の値をコンソールへ出力する。
table.remove(list)
配列の末尾を削除する。
for i = 1,6 do
Msg(list[i])
end
配列のインデックス(1~6)の値をコンソールへ出力する。
table.remove(list,2)
配列のインデックス(2)の値を削除する。
for i = 1,6 do
Msg(list[i])
end
To use the API, you need to sign up for a plan.
Download the dedicated API
need to do it.
*SILVER is scheduled to be released in May.
準備の必要はありません
- Script Code -
- Script Image -
- Warm Up -
- Script Detail -
- API -
- Script Image -
bottom of page