See the javadocs for QueryParser.setAllowLeadingWildcard(boolean allowLeadingWildcard). And from the FAQ, see http://wiki.apache.org/lucene-java/LuceneFAQ#What_wildcard_search_support_is_available_from_Lucene.3F
Be sure to heed the warnings about performance. -- Ian. On Tue, Jun 21, 2011 at 4:27 PM, G.Long <[email protected]> wrote: > Hi :) > > I've got the following text indexed with simpleAnalyzer : > > "security is a real problem." > > If I try to search for secu*, it will find the document. But if I try to > search for curi*, there are no results. > > I raed that it's not possible to add a * wildcard at the begining of the > query so what should I do to handle this type of query where the user write > just a part of the word (which is in the middle of the word) ? > > Thank you :) > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
