Hello,
I can have message like this
Some object id=3 created by user=123
What is the best way to get tokens
id=3, user=123
after analysis?
I think about splitting with standard delimiters (with Tokenizer) excluding "=" and filtering (with Token Filters) everything that doesn't contain it.
But maybe there is another better way.
And if not, can I exclude everything that not contain "=" without regular expressions?