[binary_to_list(X) || X <- [<<"a">>, <<"b">>, <<"c">>]]. 或者更精细
BinList = [<<"a">>, <<"b">>, <<"c">>], NormalList = [binary_to_list(X) || X <- BinList], NormalList.
或者,使用列表:map/2:
lists:map(fun erlang:binary_to_list/1, [<<"a">>, <<"b">>, <<"c">>]).
Run Code Online (Sandbox Code Playgroud)