Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

How to? use @everything perl regex

Oct
2
0
greetings

using windows xp
take command ver 16
tcc regular syntax perl

issue :
the command

@everything /f "::.\.\d{3}"

returns files as:
E:\00000001.ddd
G:\00000002.ddd
H:\style.DDD

rather then:
H:\default.001
H:\default_backup.001

what is the error in the command ?

best regards

reuven
 
"Search operators, wildcards, macros, modifiers and functions do not work in regex mode." See here ...

http://www.voidtools.com/support/everything/searching/

Edit: So, possible solutions could be:

everything /f /r test\.[0-9][0-9][0-9]

everything /f /r "test\.[0-9][0-9][0-9]"

everything /f ::test\.[0-9][0-9][0-9]

everything /f "::test\.[0-9][0-9][0-9]"

Edit2: If you will avoid machting on "zzz.999.zzz" (means, you will match only files with the SUFFIX ".000-999"), the following variants are even better ...

everything /f /r test\.[0-9][0-9][0-9]$

everything /f /r "test\.[0-9][0-9][0-9]$"

everything /f ::test\.[0-9][0-9][0-9]$

everything /f "::test\.[0-9][0-9][0-9]$"

Greetings
 
Last edited:

Similar threads

Back
Top