E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
Hello
E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
Kind regards
E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
Kind regards
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
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.
*.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.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
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.
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.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
There is only one small problem. Unable to perform the search in Turkish language.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
You have regex enabled. (DÜZENLİ İFADE) is shown in the status bar.
Please disable regex (DÜZENLİ İFADE) from the Search (Arama) menu.
Please disable regex (DÜZENLİ İFADE) from the Search (Arama) menu.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
It works when disabled. Thanks
I don't want it to find duplicate items.
I don't want it to find duplicate items.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
Could you please give an example of duplicated results.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
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:
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:
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
I downloaded and installed the beta version.
The code did not work. Search not found.
The code did not work. Search not found.
Re: E.g; I want it to fetch files whose last digit ends in 629. May I know how it's done?
Did you add your network share to your index? (under Tools -> Options -> Folders -> Add...)
Could you please send a screenshot with no results found.
Could you please send a screenshot with no results found.