7

有没有办法将元组转换为字符串?

考虑我有以下列表:

[{atom,5,program},{atom,5,receiving},{nil,5}]

我希望将其转换为以下字符串:

"{atom,5,program},{atom,5,receiving},{nil,5}"

我尝试在列表中的每个元素上使用 erlang:tuple_to_list ,它返回

A = [atom,5,program]

最终,我无法将其与 "{" ++ A ++ "}" 连接起来

有什么想法可以将其转换为字符串吗?

4

1 回答 1

15
Term = [{atom,5,program},{atom,5,receiving},{nil,5}].
lists:flatten(io_lib:format("~p", [Term])).
于 2013-03-20T21:23:19.887 回答