返回集合中所有元素的字符串,由(seq collection)返回,由可选的分隔符分隔。
以下是语法。
(join sep col)
Parameters - 'sep'是集合中每个元素的分隔符。 'col'是元素的集合。
Return Value - 连接的字符串。
以下是Clojure中加入的示例。
(ns clojure.examples.hello
(:gen-class))
(defn hello-world []
(println (clojure.string/join ", " [1 2 3])))
(hello-world)
上述程序产生以下输出。
1 , 2 , 3