如何删除regex Yahoo管道中第一个br
标记之前的所有内容?
Regex模块
in [item.description] replace [.+(<br>)] with [mytext]
您的:
in [item.description] replace [.+(<br>)] with [mytext]
正确:
in [item.description] replace [.+?(<br>)] with [mytext]
参见:贪婪与非贪婪匹配。
此外,括号也是多余的。CCD_ 2也会起作用。