List.ReplaceRange
List.ReplaceRange(list as list, index as number, count as number, replaceWith as list) as list
從指定位置 index
開始將 list
中 count
個值替換成清單 replaceWith
。
將清單 {1, 2, 7, 8, 9, 5} 中的 {7, 8, 9} 以 {3, 4} 取代。
使用方式
List.ReplaceRange({1, 2, 7, 8, 9, 5}, 2, 3, {3, 4})
輸出
{1, 2, 3, 4, 5}