List.ReplaceRange
List.ReplaceRange(list as list, index as number, count as number, replaceWith as list) as list
Sostituisce count
valori in list
con l'elenco replaceWith
a partire dalla posizione specificata index
.
Sostituire {7, 8, 9} nell'elenco {1, 2, 7, 8, 9, 5} con {3, 4}.
Utilizzo
List.ReplaceRange({1, 2, 7, 8, 9, 5}, 2, 3, {3, 4})
Output
{1, 2, 3, 4, 5}