I am using textwrangler and am new to regex. I have a bunch of emails addresses, but I need to remove only those that are @mydomain.edu addresses.
Standard Hall,414,Ashley,Smith,"asmith@mydomain.edu, asmith@otherdomain.com"
Standard Hall,414,Stacy,Smith,"ssmith@mydomain.edu, ssmith@otherdomain.com"
As you can see, each line has an email address that uses @mydoamin.com
. I would like to remove the entire email address every time @mydomain.com
occurs, and leave the alternate email.
Is there a way to do this?