Searching for an exact string containing double quotes

If you are experiencing problems with "Everything", post here for assistance.
Post Reply
waffeln
Posts: 25
Joined: Wed Dec 29, 2021 11:35 am

Searching for an exact string containing double quotes

Post by waffeln »

I'd like to use the title:"..." parameter to find audio files matching an exact title.
How do i search for a title like this one? Rhythm Is a Dancer (7 " Edit)
I've tried quot: but it seems to be ignored inside the double quotes for the exact matching.
therube
Posts: 4691
Joined: Thu Sep 03, 2009 6:48 pm

Re: Searching for an exact string containing double quotes

Post by therube »

Ensure that your " is a " & not some character that looks like a ".
ASCII and Unicode quotation marks

I can do something like,
content:"&quot:abc&quot:"
, & it will find "abc" (in quotes) in a file containing:

Code: Select all

this is a test "abc" this is only a test
but not this:

Code: Select all

this is a test 'abc' this is only a test
This may be found - depending on your setting of Search | Match Diacritics:

Code: Select all

this is a test “abc“ this is only a test
void
Developer
Posts: 15722
Joined: Fri Oct 16, 2009 11:31 pm

Re: Searching for an exact string containing double quotes

Post by void »

Please note:
quot: is for Everything 1.4
&quot: is for Everything 1.5+


Please try the following:

title:"Rhythm Is a Dancer (7 "quot:" Edit)"
waffeln
Posts: 25
Joined: Wed Dec 29, 2021 11:35 am

Re: Searching for an exact string containing double quotes

Post by waffeln »

void wrote: Wed Mar 09, 2022 11:00 pm title:"Rhythm Is a Dancer (7 "quot:" Edit)"
This worked! I didn't think about assembling the search string this way. Thank you :)
Post Reply