is there any n-gram analyzer available??

2006-09-22 Thread heritrix . lucene
Hi i am looking for a analyzer that chops a given string into its n-grams. Basically, I want to index 3-grams and more upto the limit of a word. Can anybody tell me if there is any analyzer is available for this. Regards..

Re: is there any n-gram analyzer available??

2006-09-22 Thread karl wettin
On Fri, 2006-09-22 at 14:19 +0530, heritrix.lucene wrote: > i am looking for a analyzer that chops a given string into its n-grams. > Basically, I want to index 3-grams and more upto the limit of a word. Can > anybody tell me if there is any analyzer is available for this. It's not that much to it

Re: is there any n-gram analyzer available??

2006-09-22 Thread Chris Hostetter
https://issues.apache.org/jira/browse/LUCENE-400 -Hoss - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: is there any n-gram analyzer available??

2006-09-22 Thread heritrix . lucene
Thanks for your reply. This analyzer creates combination of words. I am looking for analyzer where you can break up the words into their n-grams. For example: 2-grams of google - > go, oo, og, gl, le like that. Regards On 9/23/06, Chris Hostetter <[EMAIL PROTECTED]> wrote: https://issues.ap

Re: is there any n-gram analyzer available??

2006-11-21 Thread Bob Carpenter
heritrix.lucene wrote: Thanks for your reply. This analyzer creates combination of words. I am looking for analyzer where you can break up the words into their n-grams. For example: 2-grams of google - > go, oo, og, gl, le like that. This is also easy. You can check out our sample in Gospoden