Drop

WMA link


Drop[list, n]

returns list with the first n elements removed.

Drop[list, -n]

returns list with its last n elements removed.

Drop[list, {m, n}]

returns list with elements m though n removed.

Drop up until the third item from the beginning of a list:

Drop until the second item from the end of that list:

Drop from the second item to the second-to-the-end item:

Drop a submatrix:

Dropping the 0th element does nothing, and returns the list unmodified:

Even if the list is empty:

See also Take.

DeleteCases
Extract