Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题可能有点傻,但我就是想不通。假设我有一个字符串列表
(setq foo '("hello" "world"))
现在我需要将它们展平以获得单独的字符串,例如
"hello" "world"
我怎样才能做到?这里列表的编号是事先未知的。
要将参数列表传递给您可以使用的函数apply,例如
apply
(应用'插入'(“你好”“世界”))