Logo

Programming-Idioms

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

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).

d, parts, t = ',-_', [], 0
for i, x in enumerate(s):
    if x in d:
        parts.append(s[t:i])
        t = i + 1
parts.append(s[t:])
from re import escape, split
p = '[%s]' % escape(',-_')
parts = split(p, s)
import re
parts = re.split('[,_\-]', s)
var parts = s.Split(',', '-', '_');

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