I expect to use something like this but it doesn't work (with menu: Search -> Regular Expressions -> true):
"C:\folder1\" \d\d.txt
How to combine search in specific folder with regular expressions?
Re: How to combine search in specific folder with regular expressions?
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
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
Re: How to combine search in specific folder with regular expressions?
Wow, thanks, works like a charm!