Splits string on a regular expression. Optional argument limit is
the maximum number of splits.
(defn split
"Splits string on a regular expression. Optional argument limit is
the maximum number of splits."
{:deprecated "1.2"}
([^Pattern re ^String s] (seq (.split re s)))
([^Pattern re limit ^String s] (seq (.split re s limit))))
Comments top
No comments for split. Log in to add a comment.