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(/[-_,]/)
List<?> parts = list(new StringTokenizer(s, ",-_"));
You can use `Object` or the `?` wildcard here,
the `StringTokenizer` class implements `Enumeration<Object>`.
the `StringTokenizer` class implements `Enumeration<Object>`.
String z = "[%s]".formatted(quote(",-_")),
parts[] = s.split(z, -1);
Scanner t = new Scanner(s);
String z = quote(",-_");
z = "[%s]".formatted(z);
t.useDelimiter(compile(z));
String parts[] = t.tokens()
.toArray(String[]::new);
t.close();
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.
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:])