I've just installed Lucene.NET.
I'm doing a text search. I want to check if a large text contains / fuzzy matches a word/phrase, say:
Eg1:
text: "I posted a question about Lucene.NET on stackoverflow. Will I get an asnwer?"
textToSearch: "posted a question abot Lucene"
These 2 should be a match, since text contains textToSearch (except the samll typo abot -> about.
Is this possible with Lucene.NET library?
If not, does it support at least single word fuzzy matching in a text?
Eg:
text: "I posted a question on stackoverflow"
textToSearch "stackovrlow" (missspelled)