Logo

Programming-Idioms

  • Lisp
  • Dart
  • Python

Idiom #283 Split with a custom string separator

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

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

ensure sep is a Regex

New implementation...