I can split a string with a comma using preg_split, like
preg_split
$words = preg_split(\'/[,]/\', $string);
How can I use a dot, a space and
The examples are there, not literally perhaps, but a split with multiple options for delimiter
$words = preg_split('/[ ;.,]/', $string);