in reply to Trying to find a word in a fuzzy search algorithm
If you want to find the "word" that matched using some fuzzy approximation, you first have to define what a "word" is. Then all you do is parse your input text one "word" at a time, apply your measure, and report on match.
You will find it harder than you think to define a word though if you want anything more than just rudimentary /\b(\w+)\b/. This is the crux of the problem.
Cheers - L~R
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Trying to find a word in a fuzzy search algorithm
by Quicksilver (Scribe) on Jun 04, 2008 at 15:25 UTC |