删除br标签正则表达式之前的所有内容

时间:2015-02-07 13:26:21

标签: regex yahoo-pipes

如何删除regex Yahoo管道中第一个br标记之前的所有内容?

正则表达式模块

in [item.description] replace [.+(<br>)] with [mytext]

1 个答案:

答案 0 :(得分:1)

此致:

in [item.description] replace [.+(<br>)] with [mytext]

正确:

in [item.description] replace [.+?(<br>)] with [mytext]

请参阅:Greedy vs. non-greedy matching

此外,括号是多余的。 .+?<br>也可以。