I\'ve been trying to use:
$string=\"The Dr. is here!!! I am glad I\'m in the U.S.A. for the Dr. quality is great!!!!!!\"; preg_match_all(\'~.*?[?.!]~s\',$str
hmmm maybe try something like $sentences = preg_split('/.*?[?.!]+\s+/', $string);
$sentences = preg_split('/.*?[?.!]+\s+/', $string);