How do I remove everything before the first br tag in regex Yahoo pipes?
Regex module
in [item.description] replace [.+(<br>)] with [mytext]
How do I remove everything before the first br tag in regex Yahoo pipes?
Regex module
in [item.description] replace [.+(<br>)] with [mytext]
Yours:
Correct:
See: Greedy vs. non-greedy matching.
Also, the parentheses are superfluous.
.+?<br>would work as well.