Using uax_url_email tokenizer and ngram together

Hi,

i want to use both ngram filter and uax_url_email tokenizer on email address. so is there any way
to combine two tokenizer into a single custom analyzer ?

so that i could search for helloworld@gmail.com as well as hello or world or @gmail etc

You can only have one tokenizer per field, but you can use the gram filter
instead of the ngram tokenizer. It will ngram the individual tokens produce
by the tokenizer instead of the whole term.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.