Quote:
Originally Posted by DiapDealer
Sigil's PCRE regex engine certainly supports positive lookbehinds. It just doesn't support variable-length lookbehinds--positive or negative. It's a known limitation of the PCRE engine.
Use \K to simulate a variable-length lookbehind:
Make sure "Minimal Match" is unchecked when using the above expression.
More on the use of \K here: https://www.regular-expressions.info/keep.html
|
I see. I just started to learn how to use regex so that helps a lot, thank you