Everything version: 1.4.1.935 (x64)
I created a file "aaaxxxbbbxxx", and search the file using regex:"(?<=b{3})xxx", it works fine, I can see "aaaxxxbbbxxx" file in result.
But if I use regex "(?<=b*)xxx", there's no result.
regex lookbehind search seems not fully functional
Re: regex lookbehind search seems not fully functional
AFAIK this regex flavor doesn't support variable length in lookbehind
Re: regex lookbehind search seems not fully functional
Everything uses PCRE.
Each top-level branch of a lookbehind must be of a fixed length.
https://www.pcre.org/current/doc/html/pcre2syntax.html#SEC19
Each top-level branch of a lookbehind must be of a fixed length.
https://www.pcre.org/current/doc/html/pcre2syntax.html#SEC19
Re: regex lookbehind search seems not fully functional
I don't understand this regex. How is this functionally different from "(?<=b)xxx" ? (without the *).
Where could this be useful?
Re: regex lookbehind search seems not fully functional
OK, I see, thanks a lot.void wrote: Mon Mar 02, 2020 10:51 am Everything uses PCRE.
Each top-level branch of a lookbehind must be of a fixed length.
https://www.pcre.org/current/doc/html/pcre2syntax.html#SEC19
Re: regex lookbehind search seems not fully functional
I'm a bit slow ... This regex is useful for more complex situations like "(?<=b*c*d*)xxx"