I'm trying to find all instance of the word "dreadful" when it is in close prximity to a quotation mark (i.e. all instances of the word dreadful when it is in dialogue).
Unfortunately, I can't seem to make heads or tails of the tutorial, which seems to indicate multiple ways to express the same search... none of which work.
I've tried:
Code:
... MATCH NEAR '("“" "dreadful", 25)'
... MATCH NEAR '("“" "dreadful")'
:= NEAR ("“" "dreadful",25)
:= NEAR ( "“" "dreadful")
= NEAR ("“" "dreadful",25)
= NEAR ( "“" "dreadful")
among others...
What am I doing wrong?