This topic created in 4290 days ago, the information mentioned may be changed or developed.
现在想把一个列表 比如[{1,2}, {3,4}, rrr],转换成这个样子:"[{1,2}, {3,4}, rrr]".
各位大大怎么实现啊?
2 replies • 2014-08-02 14:48:27 +08:00
 |
|
1
KDr2 Aug 1, 2014 1
lists:flatten(io_lib:format("~p",[[{1,2}, {3,4}, rrr]])).
|