> Erlang中文手册 > lookup/2 返回在列表里第一个跟键相关联的条目

proplists:lookup/2

返回在列表里第一个跟键相关联的条目

用法:

lookup(Key, List) -> none | tuple()

内部实现:

-spec lookup(Key, List) -> 'none' | tuple() when
      Key :: term(),
      List :: [term()].

lookup(Key, [P | Ps]) ->
    if is_atom(P), P =:= Key ->
	    {Key, true};
       tuple_size(P) >= 1, element(1, P) =:= Key ->
	    %% Note that Key does not have to be an atom in this case.
	    P;
       true ->
	    lookup(Key, Ps)
    end;
lookup(_Key, []) ->
    none.

返回在列表 List 里第一个跟键 Key 相关联的条目,如果有一个存在的话,否则返回 none。例如在列表里有一个原子 A,那么元组 {A, true} 就是跟 A 相关联的条目。

proplists:lookup(k1, [{k1, 1}, {k2, 2}, k1, {k3, 3}, {k4, [[4]]}]).
proplists:lookup(k3, [{k1, 1}, {k2, 2}, k3, {k3, 3}, {k4, [[4]]}]).