So Currently I am using this code to get the first sentence only out of a string
preg_match('/^([^.!?]*[\.!?]+){0,1}/', $text, $abstract);
Can you please help me on how to create another regular expression to get the remaining text or get the text after the first sentence only ?
Thanks
This should give you the general idea using
explode()
:Note that this will treat any '.' as the end of a sentence so it may not be suitable in all cases, for example if you have 'I.T.' mid-sentence. Therefore the regular expression may be a more appropriate solution if you need this level of accuracy. Just let me know if you have any questions. : )