I need to split a string on any of the following sequences:
1 or more spaces 0 or more spaces, followed by a comma, followed by 0 or more spaces, 0 or more space
String[] splitArray = subjectString.split(" *(,|=>| ) *");
should do it.