Page 1 of 1

show all files without extension (Regex)

Posted: Fri Oct 19, 2018 4:34 pm
by Debugger
I forgot what regex is:
show all files without extension.

Re: show all files without extension (Regex)

Posted: Fri Oct 19, 2018 4:57 pm
by horst.epp
No Regex necessary, just type
ext:

Re: show all files without extension (Regex)

Posted: Fri Oct 19, 2018 11:29 pm
by void
with regex:
^[^.]*$

^ = match start of filename
[^.] = match any character except .
* = match preceding element zero or more times (in this case any character except .)
$ = match end of filename.

Re: show all files without extension (Regex)

Posted: Mon Oct 22, 2018 9:16 am
by Debugger
It does not quite work as expected because it detects folders, and I only want files.

Re: show all files without extension (Regex)

Posted: Mon Oct 22, 2018 12:07 pm
by horst.epp
Debugger wrote:It does not quite work as expected because it detects folders, and I only want files.
So just type what I said and you get only files without extensions
ext:

Re: show all files without extension (Regex)

Posted: Mon Oct 22, 2018 12:16 pm
by Debugger
horst.epp
But I was asking about regex, because these unnecessary ext: it does not work with another program MasterSeeker!

Re: show all files without extension (Regex)

Posted: Mon Oct 22, 2018 12:30 pm
by horst.epp
Debugger wrote:horst.epp
But I was asking about regex, because these unnecessary ext: it does not work with another program MasterSeeker!
files:regex:^[^.]*$
works fine in Everything and displays only files as the empty ext: does.
So its a problem in using Master Seeker and not a Everything topic at all.

Re: show all files without extension (Regex)

Posted: Mon Oct 22, 2018 2:32 pm
by Debugger
without:regex:
without:ext:
without:other

simple ^[^.]*$

However, it works. Disable "Include Directories" :lol: