Logo

Programming-Idioms

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

Idiom #283 Split with a custom string separator

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

const parts = s.split(sep);
(def parts (clojure.string/split s sep))

ensure sep is a Regex

New implementation...