E-mail list

DrzMedia

Regular Member
Joined
Sep 19, 2008
Messages
445
Reaction score
114
I have an e-mail list that also has a lot of unnecessary text in it along with the e-mails is there a way I can remove that unnecessary text so I can just take out the e-mails from that list? Is there any online script thing I can use to just take out the e-mails from that list?
 
there are many easy ways to do it, if you have access to a shell you could use sed like this:

sed -r -e "s/^.*[,:]([^,:]+@[^,:]+).*$/1/g" FILENAME

where FILENAME is the file that contains all the email addresses
 
Back
Top