Logo

Programming-Idioms

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

Idiom #259 Split on several separators

Build the list parts consisting of substrings of the input string s, separated by any of the characters ',' (comma), '-' (dash), '_' (underscore).

import "regexp"
re := regexp.MustCompile("[,\\-_]")
parts := re.Split(s, -1)

Square brackets mean "match any of these characters".
The special character dash must be escaped with a backslash.
The backslash must be escaped with a backslash.
using System.Text.RegularExpressions;
var parts = Regex.Split(s, "[,_-]");

New implementation...
< >
programming-idioms.org