Continuing the discussion from Simple substring matching without trigram index:
The above topic was closed with no replies. So opening anew.
@BlakeMScurr, are you still around? What did you find out?
I want to allow users to search for an exact phrase. Here is what I have looked at:
- eq - matches string as whole and not substring, so no matches unless ===
- anyofterms/allofterms - matches terms in a string and not exact phrase, gives false positives
- anyoftext/alloftext - does more thought matching than phrase matching as it removes stop words, gives false positives.
- regex - Not as user friendly as the other equality functions above. Requires search string be transformed into a regex, which may not always be wanted. I want to find the text exactly and do not count this
.
as any character, nor error out because I want to find a(
without a)
.
What else is there?
Maybe this somewhat relates to: String Functions in DQL