I forgot what regex is:
show all files without extension.
show all files without extension (Regex)
-
horst.epp
- Posts: 1642
- Joined: Fri Apr 04, 2014 3:24 pm
Re: show all files without extension (Regex)
No Regex necessary, just type
ext:
ext:
-
void
- Developer
- Posts: 19872
- Joined: Fri Oct 16, 2009 11:31 pm
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.
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
Re: show all files without extension (Regex)
It does not quite work as expected because it detects folders, and I only want files.
-
horst.epp
- Posts: 1642
- Joined: Fri Apr 04, 2014 3:24 pm
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:
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
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!
-
horst.epp
- Posts: 1642
- Joined: Fri Apr 04, 2014 3:24 pm
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.
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
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"