Hi all, I understand Lucene knows to find query matches in tokens. For example if I use WhiteSpaceTokenizer and I am searching with /.*nice day.*/ regular expression, I'll always find nothing. Am I correct? In my project I need to find matches inside lines and not inside words, so I am considering to tokenize lines. How I should to implement this idea? I'll really appriciate you have more ideas/implementations.
Thanks in advance, Ira