Logo

Programming-Idioms

  • Perl
  • Rust

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

let parts: Vec<_> = s.split(&[',', '-', '_'][..]).collect();
my @parts = split(/[,\-_]/, $s);

Technically, the - (dash) does not need to be escaped here since it is not representing a range. However, it is a good habit and will lead to less confusion to escape it.
var parts = s.Split(',', '-', '_');

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