robphelan
Diamond Member
I'm working in a proprietary world, SAP, where there is not much in the way of a spell checker and I'm thinking about developing one.
I know the simplest solution would be to parse the string into individual words then compare against a dictionary.
But, what about word suggestions? Say someone typed "strnig" , I want to suggest "string", or even "strong".
thanks for your input.
EDIT: I would like to add that many SAP implementations have not evolved enough to make web service calls. I'm sure I could simply code a call to an existing online service, but that may not be the best solution - especially since you are relying on some 3rd party.
I know the simplest solution would be to parse the string into individual words then compare against a dictionary.
But, what about word suggestions? Say someone typed "strnig" , I want to suggest "string", or even "strong".
thanks for your input.
EDIT: I would like to add that many SAP implementations have not evolved enough to make web service calls. I'm sure I could simply code a call to an existing online service, but that may not be the best solution - especially since you are relying on some 3rd party.