Filtering specific word after a symbol

100 views Asked by At

So currently im trying to filter a large list with different domains such as .com, .ca, ect But filtering to just .ca doesn't work because it filters emails that have any type of .ca

For example a list such as

  1. [email protected]
  2. [email protected]
  3. [email protected]
  4. [email protected]
  5. [email protected]

I was wondering if I could filter anything after the symbol @ with a specific word to just the .ca domains after the @ symbol

I've only really tried using .ca as the filter since i don't have much knowledge in regex

1

There are 1 answers

0
MakotoE On

The regex you can use to specify that the line must end with .ca is \.ca$. The $ symbol indicates the end of line.

Make sure that you enable Use Regular Expressions.

enter image description here