Returns a string of all elements in coll, separated by
separator. Like Perl's join.
(defn ^String join
"Returns a string of all elements in coll, separated by
separator. Like Perl's join."
{:deprecated "1.2"}
[^String separator coll]
(apply str (interpose separator coll)))
Comments top
1 comment(s) for join.
I was thinking about how to delimit a sequence for creating .csv files. join looks like a very good candidate for adding non-trailing delimiters to sequences, so they can be written out as .csv files.