我有这个特定的文本行和客户提交,并且该行自动中断65个字符,我需要修改我的正则表达式以查找另外一行,返回车厢或新行字符直到第一个标点符号,例如。,!,?
匹配的一行示例。:
Snippet: It's time again for the Annual State Marching Event, This Saturday at 5pm.
以上行超过65个字符,有时这些行会像这样打破
Snippet: It's time again for the Annual State Marching Event, This
Saturday at 5pm.
显示为Event, This\r\n
这是我使用的正则表达式:
preg_match('/Snippet:(\s)?+(.*)\./i', $html_part, $matches) ? $matches[2] : '';
我已经尝试过我的胜利以逃避标点符号,但没有运气。 任何帮助,将不胜感激。提前谢谢。