SpanTermQuery is a TermQuery and not a WildcardQuery. You could use a SpanRegexQuery. You could also make your own SpanWildcardQuery based on either WildcardQuery or SpanRegexQuery.

You should probably tell us a bit about the problem you try to solve rather than asking about the solution you have thought of.

27 nov 2008 kl. 14.47 skrev naveen.a:


Below is a document in lucene
----------------------------------------------
ID : 1
110_a : library information
----------------------------------------------
Case 1:
Term term1 = new Term("110_a", "library");
SpanFirstQuery spanFirstQuery = new SpanFirstQuery(new SpanTermQuery(term1),
1);

Case 2:
Term term1 = new Term("110_a", "l*");
SpanFirstQuery spanFirstQuery = new SpanFirstQuery(new SpanTermQuery(term1),
1);

if i apply first query, the documnet is found,
but, it is not found for the second query
--
View this message in context: 
http://www.nabble.com/SpanFirstQuery-is-not-taking-wildcard-characters-%28like-*%29-as-a-logical-operator-for-the-preffix-tp20719556p20719556.html
Sent from the Lucene - Java Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
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]

Reply via email to