+8  A: 

Use a regular expression and preg_split.

In the case you mention, you would get the split array with:

$splitString = preg_split('/(\/|\,| with |\&/)/', $string);
Neal Maloney
Beat me to it! ;) Nice
John at CashCommons