Results 1 to 3 of 3
Thread: Query search for exact word
- 08-16-2010, 07:46 PM #1
Member
- Join Date
- Feb 2010
- Posts
- 21
- Rep Power
- 0
Query search for exact word
Hello,
Can anyone tell me this:
How can I search a word and only specified word.
For e.g: I have a word house. And I need to search only for it, not for for e.g houses.
My search looks like this:
How can I make this happen?Java Code:analyzer = new StandardAnalyzer(Version.LUCENE_30); File file = new File(indexDirectory); directory = SimpleFSDirectory.open(file); Searcher isearcher = new IndexSearcher(directory, true); QueryParser parser = new QueryParser(Version.LUCENE_30, "fieldname", analyzer); Query query = parser.parse(word); TopScoreDocCollector collector = TopScoreDocCollector.create(500, true); isearcher.search(query, collector); System.out.println("Hits = " + collector.getTotalHits()); ScoreDoc[] hits = collector.topDocs().scoreDocs; Document hitDoc = null; for (int i = 0; i < hits.length; i++) { hitDoc = isearcher.doc(hits[i].doc); // System.out.println(hitDoc.get("fieldname")); listOfSentences.add(hitDoc); }
- 08-16-2010, 07:57 PM #2
Is the word/string you are looking for in another string?
Do you have a definition for what characters delimit a word?
Regular expressions may do the job.
No idea if this makes any sense in the Lucene thread, which I just noticed.
- 08-16-2010, 08:08 PM #3
Member
- Join Date
- Feb 2010
- Posts
- 21
- Rep Power
- 0
Similar Threads
-
Lucene search problem with comman words and composite query
By virendra in forum LuceneReplies: 1Last Post: 01-21-2010, 12:40 PM -
Java Search Query Question
By tek0011 in forum New To JavaReplies: 2Last Post: 12-01-2009, 11:37 PM -
java regular expression to search block/string/word exist in a paragraph?
By sidharth in forum Advanced JavaReplies: 2Last Post: 11-11-2009, 05:56 AM -
minimum word length in search problematic
By jocassid in forum Suggestions & FeedbackReplies: 3Last Post: 07-01-2008, 04:24 AM -
How to know the exact word on which the mouse is, in a JTextArea
By JavaBean in forum AWT / SwingReplies: 1Last Post: 05-19-2007, 12:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks