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 Scott Tiger <m....@gmail.com> on 2007/12/14 10:22:32 UTC

bi-gram with wildcard on QueryParser

QueryParser ingnores tokenizing when query includes wildcard.

Here is an example using BigramAnalyzer.

Normally.
  query is : abcde
  parsed to : ab bc cd de

When query includes wildcard.
  query is : abcde*
  parsed to : abcde*

But I want below parsed result.
  query is : abcde*
  parsed to : ab bc cd de e*

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org
For additional commands, e-mail: java-user-help@lucene.apache.org