what is the BIF to remove an item from a list

2019-09-25 03:10发布

What is the BIF to remove an item from a list?

标签: erlang
2条回答
迷人小祖宗
2楼-- · 2019-09-25 03:54

NewList = CurrentList -- Element when Element is a list

e.g. NewList = CurrentList -- [{some_element}]

查看更多
贼婆χ
3楼-- · 2019-09-25 03:55

If you want to remove a given element, it is lists:delete/2 (which is not a BIF).

If you want to remove an element at a given position, you can do something like:

del_nth_from_list(List, N) ->
  {L1, [_|L2]} = lists:split(N-1, List),
  L1 ++ L2.

If you want to remove all occurences, then:

del_all_occurences(List, Elem) ->
  [E || E <- List, E =/= Elem].
查看更多
登录 后发表回答