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.
