You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@lucene.apache.org by Günter Kukies <gu...@heuft.com> on 2003/05/15 14:43:19 UTC

German zusammengesetzte Hauptwörter

Hello,

i use the fellowing filters:

  public TokenStream tokenStream(String fieldName, Reader reader) {
        TokenStream result = new StandardTokenizer(reader);
        result = new StandardFilter(result);
        result = new LowerCaseFilter(result);
        result = new StopFilter(result, stopTable);
        
        return result;
    }

My querystring is 

ausweis

and i want to find 

Mitarbeiterausweis
Mitarbeiterausweishalter
Mitarbeiterausweisregelung

but i do not find any of the words.

What filters or special tokenizer do i need to find the above words?

Thanks in advance for your help

Günter Kukies