I am using preg_split() to get array of sentence from a string.
$sentences = preg_split("/([.?!\r\n]+)/", $text, 0, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE);
But when $text contains '&', for example:
$text = 'this is test. we are testing this & we are over.';
then it stops matching after the '&'.
..([^.?!]+(?=[.?!]['"]?\s*)(?:[.?!]['"]?\s*))worked for me, but I might have missed other obscure types of sentence endings/beginnings. After getting the matches (not splitting), run trim to get rid of the spaces. – Kevin Peno Apr 22 '11 at 21:33