【regex:(?<=a)b】and【regex:(?<!a)b】don't work.
But it works with【Ctrl+R】【(?<=a)b】and【(?<!a)b】?
【regex:(?<=a)b】Don't work
Re: 【regex:(?<=a)b】Don't work
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 <
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 <
-
- Posts: 4
- Joined: Thu May 05, 2022 11:09 am
Re: 【regex:(?<=a)b】Don't work
OK! THANK YOU!