Condividi tramite


List.ReplaceRange

Sintassi

List.ReplaceRange(list as list, index as number, count as number, replaceWith as list) as list

Informazioni su

Sostituisce count valori in list con l'elenco replaceWith a partire dalla posizione specificata index.

Esempio 1

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}