show/hide this revision's text 2 Talk about the split operation returning the strings rather than the delimiter

The problem with

\s*(,|(and))\s*

is that it would split up "sand" inappropriately.

The problem with

\s+(,|(and))\s+

is that it requires spaces around commas.

The right answer probably has to be

(\s*,\s*)|(\s+and\s+)

I'll cheat a little on the concept of returning the strings surrounded by delimiters by suggesting that lots of languages have a "split" operator that does exactly what you want when the regex specifies the form of the delimiter itself. See the Java String.split() function.

show/hide this revision's text 1

The problem with

\s*(,|(and))\s*

is that it would split up "sand" inappropriately.

The problem with

\s+(,|(and))\s+

is that it requires spaces around commas.

The right answer probably has to be

(\s*,\s*)|(\s+and\s+)