Searching for files using two or more strings

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
Perplexer
Junior Member
Junior Member
Posts: 55
Joined: 2007-09-22, 10:55 UTC

Searching for files using two or more strings

Post by *Perplexer »

Hi.

I would like to be able to find files based on two or more supplied strings.
Using one string seems to be trivial and that works for me, but often I get frustrated because I would like to search using two strings to simplify my search.

For example, I want to find this file by using the strings "gan" and "tr" :
13-elettrogang_-_once_upon_a_time_(english_trip).mp3

What should I put in the "Search for" textfield ? I'm guessing Regex will be needed, but I have no clue about it. But then again, I just need a syntax that I can remember for 2 strings or more. Nothing fancy.
User avatar
Dalai
Power Member
Power Member
Posts: 10035
Joined: 2005-01-28, 22:17 UTC
Location: Meiningen (Südthüringen)

Post by *Dalai »

You can use something like

Code: Select all

*gan*tr*.*
to find the provided file name. However, the order of the search terms matter in this case, i.e. files with "tr" before "gan" won't be found.

It's easier to use the Search's Plugins tab:
[X] Search in plugins
Combine with [o] AND (all match)

Code: Select all

tc | name | contains | tr
tc | name | contains | gan
Note that all tabs of the Search dialog are included in the search, so make sure the search for all files (*).

Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64

Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Post Reply