;; Get a sequence of words out of a string.
user=> (re-seq #"\w+" "mary had a little lamb")
("mary" "had" "a" "little" "lamb")
;; Get a sequence of words out of a string.
user=> (re-seq #"\w+" "mary had a little lamb")
("mary" "had" "a" "little" "lamb")
Get a sequence of words out of a string.
user> (re-seq #"\w+" "mary had a little lamb")
("mary" "had" "a" "little" "lamb")