I want to convert from atom to string.
Input = 'hello world'. Output = "hello world".
How do I achieve this?
ef1yzkbh1#
使用atom_to_list:
atom_to_list
> atom_to_list('hello world'). "hello world"
1条答案
按热度按时间ef1yzkbh1#
使用
atom_to_list
: