Hi,
Using .679b I tried a number of the regex operators - none worked with regex enabled.
With regex not enabled the |, *, ?, and ! (all the booleans and wildcards) worked, although the space between the operator and the argument was sometimes necessary, and sometimes not depending on which operator was being used. With regex enabled none of these worked.
All other regex operators listed in the FAQ notes did not work.
Maybe I'm not employing regex properly:
I have a lot of files with "Cessna" in the name. Using: s{1,2} returns nothing with regex enabled or not enabled.
Thanks,
John
Enable Regex doesn't appear to work
Re: Enable Regex doesn't appear to work
LU.*EERS finds:
> The Lumineers
&
> Woodstock '69 - Jefferson Airplane - Volunteers
So in that respect, Regex does look to be working.
Now the syntax that you may need, that's a different situation?
TRANS.*S{3,3} finds:
> Transatlantic Railroad - Expresss to Oblivion
So again its working.
? http://www.zytrax.com/tech/web/regex.htm?pf=yes
(I'm still on .678b.)
> The Lumineers
&
> Woodstock '69 - Jefferson Airplane - Volunteers
So in that respect, Regex does look to be working.
Now the syntax that you may need, that's a different situation?
TRANS.*S{3,3} finds:
> Transatlantic Railroad - Expresss to Oblivion
So again its working.
? http://www.zytrax.com/tech/web/regex.htm?pf=yes
(I'm still on .678b.)
Re: Enable Regex doesn't appear to work
tried using your .* syntax in .679b - no joy, but I'll keep working at it.
Re: Enable Regex doesn't appear to work
Found the problem.
I often open Everything from the file context menu on a specific folder.
When I do that the folder path automatically shows up in the search window with a: " appended.
Doing a regex search from there doesn't work.
The only thing that can be in the search window is the regex expression - that works.
Not sure if it's worth "fixing", maybe just note that characteristic in the regex help section.
I often open Everything from the file context menu on a specific folder.
When I do that the folder path automatically shows up in the search window with a: " appended.
Doing a regex search from there doesn't work.
The only thing that can be in the search window is the regex expression - that works.
Not sure if it's worth "fixing", maybe just note that characteristic in the regex help section.
Re: Enable Regex doesn't appear to work
...on second thought:
It probably is worth fixing somehow.
When I do a regex searching all my files, about 90% of what shows up is not what I'm looking for (a lot of chaff).
If I isolate on a folder containing files I'm looking for, 90% of what I'm looking for shows up.
Also, some of the options in the beta could bear with an explanation; e.g., What does "Allow literal operators" do exactly?
It probably is worth fixing somehow.
When I do a regex searching all my files, about 90% of what shows up is not what I'm looking for (a lot of chaff).
If I isolate on a folder containing files I'm looking for, 90% of what I'm looking for shows up.
Also, some of the options in the beta could bear with an explanation; e.g., What does "Allow literal operators" do exactly?
Re: Enable Regex doesn't appear to work
Try using the regex modifier:
Note: regex must be disabled from the search menu.
By default, to search for abc or 123, you must search for:
Enabling Allow literal operators, allows you to search for:
http://www.voidtools.com/support/everyt ... ns/#search
Code: Select all
regex:^foobar$
Allow literal operators allows you to use AND, OR and NOT as operators.Also, some of the options in the beta could bear with an explanation; e.g., What does "Allow literal operators" do exactly?
By default, to search for abc or 123, you must search for:
Code: Select all
ABC|123
Code: Select all
ABC OR 123
Re: Enable Regex doesn't appear to work
Oooops, Sorry. I got stuck on reading the FAQ page and didn't look into the extensive support pages.
Thanks
Thanks