RE: How to use regexQuery along with fuzzy logic capabilities

2008-10-23 Thread Agrawal, Aashish (IT)
any comments / help on this question ? thanks, Aashish Hi, I want to use lucene for a simple search engine. If I use the code like this, QueryParser parser = new QueryParser(field, analyzer); Query query = parser.parse(line); searcher.search(query) above code doesn't give me regular expr

Re: How to use regexQuery along with fuzzy logic capabilities

2008-10-22 Thread Hasan Diwan
ct 2008 12:48:46 To: Subject: How to use regexQuery along with fuzzy logic capabilities Hi, I want to use lucene for a simple search engine. If I use the code like this, QueryParser parser = new QueryParser(field, analyzer); Query query = parser.parse(line); searcher.search(query) above

How to use regexQuery along with fuzzy logic capabilities

2008-10-22 Thread Agrawal, Aashish (IT)
Hi, I want to use lucene for a simple search engine. If I use the code like this, QueryParser parser = new QueryParser(field, analyzer); Query query = parser.parse(line); searcher.search(query) above code doesn't give me regular expression search power, while at the other hand if I use the bel