I want the results to be:
Cats, Felines & Cougars    
Dogs    
Snakes
This is the closest I can get.
$string = "Cats, Felines & Cougars,Dogs,Snakes";
$result = split(',[^ ]', $string);
print_r($result);
Which results in
Array
(
    [0] => Cats, Felines & Cougars
    [1] => ogs
    [2] => nakes
)
 
     
     
    