I forgot what regex is:
show all files without extension.
show all files without extension (Regex)
Re: show all files without extension (Regex)
No Regex necessary, just type
ext:
ext:
Re: show all files without extension (Regex)
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.
^[^.]*$
^ = 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)
It does not quite work as expected because it detects folders, and I only want files.
Re: show all files without extension (Regex)
So just type what I said and you get only files without extensionsDebugger wrote:It does not quite work as expected because it detects folders, and I only want files.
ext:
Re: show all files without extension (Regex)
horst.epp
But I was asking about regex, because these unnecessary ext: it does not work with another program MasterSeeker!
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)
files:regex:^[^.]*$Debugger wrote:horst.epp
But I was asking about regex, because these unnecessary ext: it does not work with another program MasterSeeker!
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)
without:regex:
without:ext:
without:other
simple ^[^.]*$
However, it works. Disable "Include Directories"
without:ext:
without:other
simple ^[^.]*$
However, it works. Disable "Include Directories"