Visualization Exclude Pattern

I'm looking to exclude on a field value, in this case an email address.
Exact matches work fine, but I'm looking to exclude an email beginning with a certain keyword.
For example, exchanger523418115@example.com. So in this case the keyword would be 'exchanger'
I've tried the following:
^exchanger
/bexchanger/B
^exchanger\w*

But no luck. Any ideas?

1 Like

Greetings! I am also trying to exclude pattern that starts with string "/something/*****". Have you found solution.

You should be able to use a combination of - and * as follows: -email:exchanger*

Hi,

I have a situation where my query returns:

GET /fundraising/alice
GET /fundraising/benny

I would like the response to be

GET /alice
GET /benny

I tried in my exclude pattern:

|./\fundraising/.

If I use ./fundraising\/.| it will completely exclude all pages leading with fundraising which isn't what I want.

How can I achieve this?