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
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
The regex you can use to specify that the line must end with
.cais\.ca$. The$symbol indicates the end of line.Make sure that you enable Use Regular Expressions.