I'd like to have a simple & lightweight library/application in PHP/Python/C/C++ library/application to match/correct/give suggestions to input. Example in/out:

  1. Input: Webdevelopment ==> Output: Web Development
  2. Input: Web developmen ==> Output: Web Development
  3. Input: Web develop ==> Output: Web Development

Given there is database of correct words and phrases, I just need the library to match/guess phrases. Please suggest if you know any.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
+100

How to Write a Spelling Corrector from Google's Director of Resarch Peter Norvik contains a spelling corrector in 21 lines of Python, complete with explanations.

You will have to convert this into a module yourself, but that should be easy. Of course, you will also need a corpus (i.e. words), but he gives sources for these as well.

link|improve this answer
That's a very interesting article (and at the end of it you'll find links to implementations in a bunch of other languages as well). Thank you. – Eugen Constantin Dinca Feb 6 '10 at 18:57
+1 Thanks! Great find! – Viet Feb 7 '10 at 1:52
feedback

I guess what you want to do is compute the edit distance between strings (an input, output pair). One of the simpler ones (that I've used for figuring out a team's full name from it's 3 letter short one - it's a long story..) is the Levenshtein distance. The last external link on the page has a bunch of different implementations of it (turns out it's standard on PHP 4.0.1+).

link|improve this answer
+1 Thanks Eugen. – Viet Feb 3 '10 at 8:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.