Let's say you were to build a job search site. What would be your opinion on the most efficient way to implement spell checking besides rely on the browser to handle it? Note that we're going to use the TinyMCE control -- don't know if that changes your opinion on anything.
Part of my problem is that we may not be able to find a web host that has all the bells and whistles we need in our requirements matrix, and therefore may not have pspell installed, perhaps.
One option is to collect a list of like the top 500 misspelled and mistyped words and just check against that?
Collecting Your Opinions on Spell Checking
Moderator: General Moderators
Re: Collecting Your Opinions on Spell Checking
the easy method, which has been covered numerous times on the forums is an algorithm like levenstein (sp?, no irony intended).
a more advanced "leaning" method like google uses would be more involved to implement, a more advanced system would detect users self correcting their own mistakes, and learn from the users. This would be getting into more neural networking / perception type algorithms.
For a basic implementation try looking up soundex, levensstein and other word distance algorithms
a more advanced "leaning" method like google uses would be more involved to implement, a more advanced system would detect users self correcting their own mistakes, and learn from the users. This would be getting into more neural networking / perception type algorithms.
For a basic implementation try looking up soundex, levensstein and other word distance algorithms