Hello
For example, we have a text:
" Hello w*orld"
it's indexed as NO_NORMS, so this phrase is term.
And I have a code:
Query query = new WildcardQuery(new Term("field", " Hello w*orld")); its work
But I need symbol '*' as ordinary symbol, not escape symbol.
The QueryParser's analogue '\\*'
Query query = new WildcardQuery(new Term("field", " Hello w\\*orld"));
don't wokrs.
Thanks
- How I can find wildcard symbol with Wildca... Сергій Карпенко
- Re: How I can find wildcard symbol wit... Erick Erickson
- Re[2]: How I can find wildcard sym... Сергій Карпенко
- Re: How I can find wildcard sy... Daniel Noll
- Re: How I can find wildcar... Erick Erickson
- RE: How I can find wildcard symbol wi... Kwon, Ohsang
- Re: How I can find wildcard symbol... Daniel Noll
- Re: How I can find wildcard sy... Daniel Noll
