If you are experiencing problems with "Everything", post here for assistance.
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
Post
by salazor »
I needs your help, I'm not fluent in Regex - I have to find the files in the range -149 to -160
original name is gerse-14987 or otyr-15734 or hertam-16043 - All are 5 digital
I created
but not quite working properly.
-
therube
- Posts: 4955
- Joined: Thu Sep 03, 2009 6:48 pm
Post
by therube »
(I'm not very good, but) maybe something like this:
(that's not going to do it is, it... maybe i look later.)
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
Post
by salazor »
In all works, only now found also -161 or -168
but on 160** ends
-
therube
- Posts: 4955
- Joined: Thu Sep 03, 2009 6:48 pm
Post
by therube »
Cool. I like that.
And you can tack on a \D to avoid something like hertam-160436 (six digits).
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
Post
by salazor »
It works perfectly, but I noticed a small mistake - if I choose from the menu "Enable Regex" it works well, but if I typed
Regex from menu disabled - no results
Is it possible to combine the command like this:
-
void
- Developer
- Posts: 16672
- Joined: Fri Oct 16, 2009 11:31 pm
Post
by void »
regex:"-(149|15\d|160)\d\d" dupe:
Use double quotes to escape the |
-
salazor
- Posts: 258
- Joined: Tue Jun 17, 2014 10:52 am
Post
by salazor »
Now it works, thanks.