Splitting On Whitespace
(clojure.string/split "split me up" #" ")
; ["split" "me" "up"](clojure.string/split "double spacing wtf?" #" ")
; ["double" "" "spacing" "" "wtf?"](clojure.string/split "double spacing wtf?" #" +")
; ["double" "spacing" "wtf?"](clojure.string/split "we\thave new\nlines and tabs\n" #"\s+")
; ["we" "have" "new" "lines" "and" "tabs"]Last updated