I want to know how does the "Did you mean : ..." of Wikipedia works and if there's a way, like with the API, to use it? Because I want to get the corresponding page from my input but this one could include errors. Example . Is there a query that returns directly the suggestion?

Thank you for your help.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

(I am not sure of Wikipedia's implementation details, but this is one way to do it)
It probably uses a phonetic algorithm, such as Soundex and matches it against a precomputed database.
PHP offers some phonetic algorithms built in if you want to play with them.

link|improve this answer
feedback

This comes under "information retrieval" in computer science. Lucene is the open source library implementing these concepts and could be the library you are looking for. For more details on information retrieval you can search Google. For specifics on how "Did you mean" can be implemented using Lucene, go through the below links

link|improve this answer
feedback

You can use the Google API to get the appropriate Wikipedia article: http://ajax.googleapis.com/ajax/services/search/web?v=1.0&q=site:en.wikipedia.org%20Stanfrod%20univeristy

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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