I need to check spells and grammars in texts so I started using LanguageTool API (Can be found here). Now, when I am writing the start-up code provided by them as follows-
JLanguageTool langTool = new JLanguageTool(Language.ENGLISH);
langTool.activateDefaultPatternRules();
List<RuleMatch> matches = langTool.check("Eat I rice" +
"every day and go school to good as a boy");
for (RuleMatch match : matches) {
System.out.println("Potential error at line " +
match.getEndLine() + ", column " +
match.getColumn() + ": " + match.getMessage());
System.out.println("Suggested correction: " +
match.getSuggestedReplacements());
}
I don't get any error. Sorry if I am wrong but is the sentence "Eat I rice every day and go school to good as a boy" a correct sentence (grammatically)? If so, or if not, then is there any way to detect such sentences (meaningless and or grammatically incorrect) with the tool?
Languagetool is rule based. Obviously the sentence "Eat I rice every day and go school to good as a boy" is not catched by any of the rules yet.
http://wiki.languagetool.org/tips-and-tricks has the info on how to add user-defined rules to Languagetool.
Here is an example of such a rule:
There is an online rule editor available at
http://community.languagetool.org/ruleEditor2/
A simple solution to the problem would be
but of course this would only cover the verb "Eat" - but I hope you get the picture how it works ...