Erlang string from list

2019-07-23 13:58发布

I have erlang list symbols: [104, 105, 106, 107 ...] How can i got string from this list:

"hijk..."?

Thank you.

1条回答
走好不送
2楼-- · 2019-07-23 14:35

Strings as a datatype do not exist in Erlang. Stings are simply lists of characters.

[104, 105, 106, 107] and "hijk" are perfectly equivalent.

In fact, if you type the original list in the shell you get back the "string":

1> [104, 105, 106, 107].   
"hijk"
查看更多
登录 后发表回答