I have a term test* and I want to treat it as string and not a wildcard of test. How will I be able to do that in Lucene.Net. Any help???
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Yes you can use a backslash to escape special characters. Both in the QueryParser and custom built searches. List of characters that require escaping can be found here. |
|||
|
|
|
If you're using the newer versions of Lucene.Net, you can use |
|||
|
|
*test*would be\*test\*. Not knowing lucene.net, I'm not qualified to answer for sure. – corsiKa May 5 '11 at 2:50