Search Combination of Keyword

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
johnaicc1
Posts: 1
Joined: Sat Dec 05, 2020 8:29 am

Search Combination of Keyword

Post by johnaicc1 »

Hello,

I am trying to search for filenames that match combinations of my inputted keyword. For example,

query: aabbcc
should match filenames: aabbcc, aaccbb, bbaacc, bbccaa, ccaabb, ccbbaa

query: xxyyzz
should match filename: xxyyzz, xxzzyy, yyxxzz, yyzzxx, zzxxyy, zzyyxx

Is there good ways to have this search results setup as filters.

Thanks
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: Search Combination of Keyword

Post by void »

Everything can do this yet.

Please try the following search:
xx yy zz regex:(.)\1(.)\2(.)\3

Adjust xx, yy and zz as needed.

regex:(.)\1(.)\2(.)\3
-This will match xxyyzz where x, y and z are any character.
Post Reply