If I index a tweet body with the following text:
"Hey @joesmith are you watching #gameofthrones?"
I would like the tokenizer to create the following tokens from @joesmith and #gameofthrones
@joesmith
joesmith
#gameofthrones
gameofthrones
If someone searches for gameofthrones, it will match the above tweet text. If they search for #gameofthrones it would also match. The same behavior would also exist for searching for joesmith or @joesmith.
Is this possible? Which tokenizer / analyzer should I be looking at using?