如何删除regex Yahoo管道中第一个br
标记之前的所有内容?
正则表达式模块
in [item.description] replace [.+(<br>)] with [mytext]
答案 0 :(得分:1)
此致:
in [item.description] replace [.+(<br>)] with [mytext]
正确:
in [item.description] replace [.+?(<br>)] with [mytext]
请参阅:Greedy vs. non-greedy matching。
此外,括号是多余的。 .+?<br>
也可以。