如何将列表转换为字符串,以便可以用它调用insert
或message
?我需要显示c-offsets-alist
,但是我得到Wrong type argument: char-or-string-p
用于插入,或者得到Wrong type argument: stringp
用于消息。
最佳答案
我不确定您要实现的目标,但是format
将“东西”转换为字符串。例如:
(format "%s" your-list)
将返回您的列表的表示形式。
message
在内部使用格式,因此(message "%s" your-list)
会打印出来
关于string - 如何在Emacs Lisp中将列表转换为字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18979300/