I'm working with Lucene 3.2. How can I use a TokenFilter that doesn't just filter/modify a term, but can also insert other terms into the stream?
For example, I want a filter that take as input "tv42lcd" and insert into the stream the words "tv42lcd", "tv", "42", "lcd".
I'm aware that I could do this by implementing my own Tokenizer. But I rather still use the provided StandardTokenizer.