I am using this code to split my content after the first punctuation mark, retrieving the fist sentence.
$content = preg_split('/(?<=[!?.])./', $content);
How can I remove that remaining punctuation mark at the end of the splitted sentence?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
How about:
This splits on punctuation mark
!?.followed by an optionnal space. The captured strings don’t contain leading space.The difference with yours is that I don’t catch the punctuation.
output: