- s-split separators s #!optional keepemptyprocedure
Splits s into substrings bounded by matches for separators. If keepempty is #t, zero-length substrings are returned.
(s-split " " "one two three") ;; => ("one" "two" "three") (s-split ":" "foo:bar::baz" #t) ;; => ("foo" "bar" "" "baz") (s-split ":," "foo:bar:baz,quux,zot") ;; => ("foo" "bar" "baz" "quux" "zot")