Hi,
I am using this code to break some words in a Text:
stringReader = new StringReader(Text);
tokenStream = StandardAnalyzer.TokenStream("defaultFieldName",
stringReader); // removes standard stopwords too
Lucene.Net.Analysis.Token token = tokenStream.Next();
This works very well but it swallows up some critical/exceptional words. Is
there an easy way to prevent it to swallow up words that start with d+ or
v+. Thanks.
Christian
