position
.running shoes
, and we want to omit results like
running sleek shoes
or shoes running
— these results contain the right tokens, but not in the exact order and position
that the query specifies.
Enter the ###
phrase operator:
running sleek shoes
and shoes running
did not match the phrase running shoes
despite having the tokens running
and
shoes
because they appear in the wrong order or with other words in between.
running shoes
.
Original Text | Tokens | Match | Reason | Related |
---|---|---|---|---|
Sleek running shoes | sleek running shoes | ✅ | Contains running and shoes , in that order. | |
Running shoes sleek | sleek running shoes | ❌ | running and shoes not in the right order. | Match conjunction |
SLeeK RUNNING ShOeS | sleek running shoes | ✅ | Contains running and shoes , in that order. | Lowercasing |
Sleek run shoe | sleek run shoe | ❌ | Does not contain both running and shoes . | Stemming |
Sleke ruining shoez | sleke ruining shoez | ❌ | Does not contain both running and shoes . | |
White jogging shoes | white jogging shoes | ❌ | Does not contain both running and shoes . |
sleek shoes
with a slop of 1
would match sleek running shoes
because there is one word, running
, between
sleek
and shoes
.
Slop has not yet been implemented in v2
. Please continue to use v1
for this capability.