Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
var parts = s.Split(',', '-', '_');
var parts = s.split( RegExp(r"[,-_]") );
var parts = s.split(/[-_,]/)
my @parts = split(/[,\-_]/, $s);
parts = s.split( Regexp.union(",", "-", "_") )
let parts: Vec<_> = s.split(&[',', '-', '_'][..]).collect();