标签: erlang
输入:“ hello world” 输出:“世界你好”
输入:“ hello world”
输出:“世界你好”
如何实现?
答案 0 :(得分:3)
使用atom_to_list:
atom_to_list
> atom_to_list('hello world'). "hello world"