How can I search like "(0-9)" ?

General discussion related to "Everything".
Post Reply
w4r3zh4ck™
Posts: 4
Joined: Tue Nov 17, 2009 10:13 am

How can I search like "(0-9)" ?

Post by w4r3zh4ck™ »

So there are mp3s with same names like
track.mp3
track (1).mp3
track (2).mp3

i wanna remove these with numbers
but if i type "(" into search, it gets also the tracks that dont have numbers.

Any sugguestion ?
David
Developer
Posts: 430
Joined: Tue Mar 17, 2009 1:42 am

Re: How can I search like "(0-9)" ?

Post by David »

With regex enabled:

Code: Select all

[(][0-9]*[)].*mp3
To enable Regex:
  • In "Everything", from the Search menu, check Enable Regex.
w4r3zh4ck™
Posts: 4
Joined: Tue Nov 17, 2009 10:13 am

Re: How can I search like "(0-9)" ?

Post by w4r3zh4ck™ »

still cant search even with regex enabled
David
Developer
Posts: 430
Joined: Tue Mar 17, 2009 1:42 am

Re: How can I search like "(0-9)" ?

Post by David »

Do you get any results?
Are the results incorrect?

Try the following regex search:

Code: Select all

[(][0-9]*[)][.]mp3
w4r3zh4ck™
Posts: 4
Joined: Tue Nov 17, 2009 10:13 am

Re: How can I search like "(0-9)" ?

Post by w4r3zh4ck™ »

well it doesnt matter
i found another way :)
Post Reply