I have indexed a list of words such as 'just saw','just passed','just met'.. I have a list of sentences and I want to extract only those sentences which have these keywords in it. for eg 'I just saw a movie'. but I don't want the sentences which are like ' I was in US and met Obama'. I want only those sentences which have consecutive keywords. How can I do that using luence
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Lucene supports finding words are a within a specific distance away. To do a proximity search use the tilde, "~", symbol at the end of a Phrase. For example to search for a "apache" and "jakarta" within 10 words of each other in a document use the search:
|
|||
|
|
There is also SpanQuery which gives good control over the order of the terms. |
|||
|