> Erlang中文手册 > nthtail/2 获取列表里的第 N 个元素后的元素

lists:nthtail/2

获取列表里的第 N 个元素后的元素

用法:

nthtail(N, List1) -> Tail

内部实现:

-spec nthtail(N, List) -> Tail when
      N :: non_neg_integer(),
      List :: [T,...],
      Tail :: [T],
      T :: term().

nthtail(1, [_|T]) -> T;
nthtail(N, [_|T]) when N > 1 ->
    nthtail(N - 1, T);
nthtail(0, L) when is_list(L) -> L.

获取列表里的第 N 个元素后的元素

lists:nthtail(3, [1, 2, 3, 4, 5]).