So I'm trying to search for a given phrase in text, already tried different methods e.g match_phrase/query_string but I still get invalid results.
Let's say we have such documents with titles:
- "This is a phrase"
- "Another doc with some phrase"
- "Something with phrase and some text"
My input phrase would be: "ome phras" which should find record #2 but no other.
So my question is how do I find given phrase anywhere in the given text?
Thanks