删除br标记Regex之前的所有内容



如何删除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也会起作用。

相关内容

  • 没有找到相关文章

最新更新