views:

68

answers:

1

I have used Lucene .Net for Indexing and using StandardAnalyzer to at time of Indexing. Now I want to search say 'attach'. In document 'attached' is there. How i get the successful hit for word 'attach'. Please help me as soon as possible.

A: 

Reducing word forms to their roots is called "stemming" in search engine software. Look at the first answer to http://stackoverflow.com/questions/1192671/how-to-enable-stemming-when-searching-using-lucene-net for a few options for stemmers using Lucene.net.

Justin Grant