TheConeHead
Programmer
anyone know of a good spell checker? Like if I had an app where people enter text into a field and wanted to do a spell check on it.....
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
![[conehead] [conehead] [conehead]](/data/assets/smilies/conehead.gif)
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for each strSuggestion in Suggest
dblSimilarity = WordSimilarity(strWord, strSuggestion)
i = intSuggestionCount
do while dblSimilarity > dblSimilarityArray(i)
if i < intSuggestionCount then
strSuggestionArray(i + 1) = strSuggestionArray(i)
dblSimilarityArray(i + 1) = dblSimilarityArray(i)
end if
strSuggestionArray(i) = strSuggestion
dblSimilarityArray(i) = dblSimilarity
i = i - 1
if i = -1 then
exit do
end if
loop
next
ReDim strSuggestionArray(intSuggestionCount)
ReDim dblSimilarityArray(intSuggestionCount)