How to use the database?

Hi guys,

I am wondering, if i could use the database of languageTool for a slightly different purpose (in German):

I want to mark a couple of nouns in a text and for a result a want to have a list containing these nouns with the article and plural form.

Before I will go deeper into it I would like to know how the database of words is designed and if it is open source.

Thanks in advanced.

From Java, you can basically use analyzeText to analyze Text. If you iterate the results you will get the base forms of words. You can then use GermanSynthesizer to generate inflected forms.

1 Like

Thanks a lot.
I appreciate that hint - that is what I was looking for.