Example 5: Filtering out all addresses from 2 domains

Match string: ^.*(?<![@]somewhere|[@]here)\.com$

Replacement string: none

Input data: fred.bloggs@somewhere.com, fred.bloggs@acme.com

Output data: fred.bloggs@acme.com

These filters match and exclude any email address that ends in @somewhere.com or @here.com. The remaining email addresses are uploaded.