Číst v angličtině

Sdílet prostřednictvím


List.RemoveRange

Syntaxe

List.RemoveRange(list as list, index as number, optional count as nullable number) as list

Asi

Odebere count hodnoty v list počínaje zadanou pozicí index.

Příklad 1

Odeberte 3 hodnoty v seznamu {1, 2, 3, 4, -6, -2, -1, 5} počínaje indexem 4.

Použití

List.RemoveRange({1, 2, 3, 4, -6, -2, -1, 5}, 4, 3)

výstup

{1, 2, 3, 4, 5}