Lucene.Net - How to treat a space-seperated phrase as a single token?
- by Gareth D
I've implemented a search facility using Lucene.Net. The index includes UK academic qualifications, including "A Level".
I'd like the users to be able to search using the phrase "A Level", but using the Standrad Analyser the "A" is stripped out as a stop-word and therefore only "Level" is indexed/searched.
What's my best option to work around…