Logo

Programming-Idioms

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

Idiom #283 Split with a custom string separator

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

import "strings"
parts := strings.Split(s, sep)

parts has type []string.
(def parts (clojure.string/split s sep))

ensure sep is a Regex

New implementation...