Example 1: Filtering all addresses without a domain
Match string: ^@.*
Replacement string: none
Input data: fred.bloggs, fred.bloggs@acme.com
Output data: fred.bloggs@acme.com
The string @.* matches against anything following an @ symbol, which indicates that a domain is present. The ^ symbol ensures that matching strings are excluded from replacement, and all data without a domain is removed.