List.ReplaceRange
List.ReplaceRange(list as list, index as number, count as number, replaceWith as list) as list
count
Nahradí hodnoty v list
zozname zoznamom replaceWith
, počnúc od zadanej pozície index
.
Nahraďte zoznam {7, 8, 9} v zozname {1, 2, 7, 8, 9, 5} zoznamom {3, 4}.
Použitie
List.ReplaceRange({1, 2, 7, 8, 9, 5}, 2, 3, {3, 4})
Výkon
{1, 2, 3, 4, 5}