Re: search query: help -- changing precedence of OR?



"Oliver Wong" <owong@xxxxxxxxxxxxxx> wrote in
94NEf.178602$km.149290@edtnps89:">news:94NEf.178602$km.149290@edtnps89:

What's the precedence between NEAR and NEXT or can they not be
mixed in
the same expression?

- Oliver

NEXT binds more closely than NEAR. for example, NEXT will turn:

a NEXT b

into

"a b"

Consequently,

a NEXT b NEAR c NEXT d

becomes

"a b" NEAR "c d"

Does that answer your question?
-- Robert


.