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." ([^String s ^Pattern re] (seq (.split re s))) ([^String s ^Pattern re limit] (seq (.split re s limit))))
Comments top
No comments for split. Log in to add a comment.