【regex:(?<=a)b】Don't work

Found a bug in "Everything"? report it here
Post Reply
Learning Regex
Posts: 4
Joined: Thu May 05, 2022 11:09 am

【regex:(?<=a)b】Don't work

Post by Learning Regex »

【regex:(?<=a)b】and【regex:(?<!a)b】don't work.
But it works with【Ctrl+R】【(?<=a)b】and【(?<!a)b】?
void
Developer
Posts: 15349
Joined: Fri Oct 16, 2009 11:31 pm

Re: 【regex:(?<=a)b】Don't work

Post by void »

Everything will break the regex term at <


Please escape < with double quotes.
Please try the following:
regex:"(?<=a)b"
regex:"(?<!a)b"



The next major version of Everything will not break the regex term at <
Learning Regex
Posts: 4
Joined: Thu May 05, 2022 11:09 am

Re: 【regex:(?<=a)b】Don't work

Post by Learning Regex »

OK! THANK YOU! :D
Post Reply