E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Have a suggestion for "Everything"? Please post it here.
Post Reply
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

Hello

E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Kind regards
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

If you want to find the extension 629, please try the following search:

*.629


If you don't want to include the extension, please try the following search:

*629.*




For more control, please try the following search:

regex:629\.[^\.]*$

regex: = enable regular expressions.
629 = match the literal text 629
\. = match a literal .
[^\.] = match any character, except a .
* = match the previous element any number of times
$ = match the end of the filename.
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

E.g; I'm looking for a picture of product code 47825629. But I know the last 3 digits of this number. I want it to find image files whose last 3 digits are 629.

Image

Image
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

Please try the following search:

pic: nowfn:ww:*629

pic: = match picture files.
nowfn: = don't match whole filenames.
ww: = match whole words.

-or-

pic: regex:629\b


pic: = match picture files.
regex: = enable regular expressions.
629 = match literal 629
\b = match word boundary.
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

thank you successful
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

There is only one small problem. Unable to perform the search in Turkish language.
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

You have regex enabled. (DÜZENLİ İFADE) is shown in the status bar.

Please disable regex (DÜZENLİ İFADE) from the Search (Arama) menu.
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

It works when disabled. Thanks

I don't want it to find duplicate items.
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

Could you please give an example of duplicated results.
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

E.g; It found files with the last digit ending in 629. But there is more than one 84424629. I want it to show only one 84424629. Is something like this possible?

Image
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

Thanks for the screenshot.

Yes, you will need Everything 1.5 (in development).

With Everything 1.5a, please try the following search:

pic: regex:629\b distinct: sort:name

distinct:
SusqUnN
Posts: 7
Joined: Sat Aug 21, 2021 11:57 am

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by SusqUnN »

I downloaded and installed the beta version.

The code did not work. Search not found.
void
Developer
Posts: 16735
Joined: Fri Oct 16, 2009 11:31 pm

Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?

Post by void »

Did you add your network share to your index? (under Tools -> Options -> Folders -> Add...)

Could you please send a screenshot with no results found.
Post Reply