Hello..
i wanna search for mp3 files that has no letters in it's filenames.
it has only digits, dashes, and underscores ..
examples
20140708_232704.mp3
20130825-112235.mp3
how can i do that ..
thank you
[help] search for files with digits only no letters in the name
Re: [help] search for files with digits only no letters in the name
Simple (all characters allowed minus a-z ):
More accurate (only digits, dashes and underscore allowed):
Even more accurate (only digits, dashes and underscore allowed and contains at least one digit):
Code: Select all
ext:mp3 regex:stem:^[^a-z]*$
Code: Select all
ext:mp3 regex:stem:^[0-9\-_]*$
Code: Select all
ext:mp3 regex:[0-9] regex:stem:^[0-9\-_]*$