Erlang-nthtail


返回List的第N个尾部,即List的子列表,从N+1开始一直持续到列表末尾

句法

nthtail(N, List)

参数

  • N - 需要返回元素的尾部第 n 个位置。

  • Lst - 元素列表。

返回值

返回 List 的第 N 个尾部,即 List 的子列表,从 N+1 开始一直到列表末尾。

例如

-module(helloworld). 
-import(lists,[nthtail/2]). 
-export([start/0]). 

start() -> 
   Lst1 = [1,2,3], 
   io:fwrite("~p~n",[nthtail(2,Lst1)]).

输出

当我们运行上面的程序时,我们将得到以下结果。

[3]
erlang_lists.htm