List.ReplaceRange
List.ReplaceRange(list as list, index as number, count as number, replaceWith as list) as list
Ersätter count
värden i list
med listan replaceWith
, med början vid angiven position index
.
Ersätt {7, 8, 9} i listan {1, 2, 7, 8, 9, 5} med {3, 4}.
Användning
List.ReplaceRange({1, 2, 7, 8, 9, 5}, 2, 3, {3, 4})
utdata
{1, 2, 3, 4, 5}