Discussion related to "Everything" 1.5 Alpha.
-
ziyan chen
- Posts: 1
- Joined: Fri Oct 27, 2023 5:16 am
Post
by ziyan chen »
I'm using Everything V1.4.1.1024 (x64) , not allowing ground brackets for grouping .
I'm learning the syntax of everything , but I have some problem :
- I saw the example shown in https://www.voidtools.com/support/everything/searching/ :
so I try to list all the file with suffix ".mp4" or ".ts" with the following command but the result is not what I want ;
- Then I would like to do the same thing without regex : I tried and I got nothing
I'm a little bit confused right now .
-
void
- Developer
- Posts: 16669
- Joined: Fri Oct 16, 2009 11:31 pm
Post
by void »
| in Everything means OR.
The | needs to be escaped with double quotes:
regex:"gr(a|e)y"
regex:".*\.(mp4|ts)"
Otherwise, Everything sees:
regex:gr(a|e)y
as:
regex:gr(a OR e)y
(which breaks your regex pattern)
Please consider:
ext:mp4;ts
*.mp4 | *.ts
ext:
-
ziyan chen
- Posts: 1
- Joined: Fri Oct 27, 2023 5:16 am
Post
by ziyan chen »
Oh thank you : ) by the way I think it should be
Last edited by
ziyan chen on Fri Oct 27, 2023 6:06 am, edited 1 time in total.