Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Clojure

Idiom #283 Split with a custom string separator

Build the list parts consisting of substrings of input string s, separated by the string sep.

(def parts (clojure.string/split s sep))

ensure sep is a Regex
var parts = s.split(sep);

New implementation...