List.RemoveRange
List.RemoveRange(list as list, index as number, optional count as nullable number) as list
從指定的位置 index
開始移除 list
中的 count
個值。
從索引 4 開始,移除清單 {1, 2, 3, 4, -6, -2, -1, 5} 中的 3 個值。
使用方式
List.RemoveRange({1, 2, 3, 4, -6, -2, -1, 5}, 4, 3)
輸出
{1, 2, 3, 4, 5}