user=> (clojure.string/split-lines "test \n string") ["test " " string"]
Splits string on a regular expression. Optional argument limit is
(defn split-lines "Splits s on \\n or \\r\\n." {:added "1.2"} [^CharSequence s] (split s #"\r?\n"))
Comments top
No comments for split-lines. Log in to add a comment.