i need to find many .mp3 files at once based on a text list, I have all my filenames well organized btw. How can search, say if i need to search a file that its name is like this:
"Earth, Wind & Fire - Let Me Talk" + "Judas Priest - Breaking the Law" + ...................
I know if has something to do with Regex, but im not familiar with regular expressions. Someone could HELP!
Multiple searches in one single search
Re: Multiple searches in one single search
Just use OR, '|'.
or more generally:
Code: Select all
"Earth, Wind & Fire - Let Me Talk" | "Judas Priest - Breaking the Law" | Jethro Tull
Code: Select all
earth wind fire | judas priest | jethro tull
Re: Multiple searches in one single search
thankyou very much !