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
Search Combination of Keyword
Re: Search Combination of Keyword
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.
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.