Best Java library(ies) for forgiving command interpreter
- by vkraemer
I am looking for a library or set of libraries that will help me write a forgiving command interpreter.
A forgiving command interpreter would be a command interpreter which can deal with simple and even not so simple spelling and word order mistakes in the input.
My goal is to have an interpreter which would take the input (a command) from a user and then:
execute the command, if it is correct.
apply corrections to the command,
until a correct command is generated
and then present that command to the
user to confirm whether it is 'what
the user meant'.