/ Published in: Clojure
Function splits string by whitespace.
Expand |
Embed | Plain Text
(defn split-by-whitespace [s] (clojure.string/split s #"\s+"))
You need to login to post a comment.
Function splits string by whitespace.
(defn split-by-whitespace [s] (clojure.string/split s #"\s+"))
You need to login to post a comment.