我有这行特定的文本并且客户提交,并且该行在 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] : '';
我试过用韩元来逃避标点符号,但没有运气。任何帮助,将不胜感激。提前致谢。