How to combine search in specific folder with regular expressions?

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
us72
Posts: 4
Joined: Thu Oct 19, 2023 8:19 pm

How to combine search in specific folder with regular expressions?

Post by us72 »

I expect to use something like this but it doesn't work (with menu: Search -> Regular Expressions -> true):

"C:\folder1\" \d\d.txt
void
Developer
Posts: 16665
Joined: Fri Oct 16, 2009 11:31 pm

Re: How to combine search in specific folder with regular expressions?

Post by void »

Please try the following search (with regex enabled):

C:\\folder1\\.*\d\d\.txt

\\ = \
\. = .
.* = match any character any number of times.



Please try the following search (with regex disabled):

C:\folder1\ regex:\d\d\.txt



regex:
Everything 1.5 pure_regex
us72
Posts: 4
Joined: Thu Oct 19, 2023 8:19 pm

Re: How to combine search in specific folder with regular expressions?

Post by us72 »

Wow, thanks, works like a charm! :D
Post Reply