What I am working on is a bit of code to pull a
clean email address out of either format and
store it in a scalar (or perhaps two scalars....
one for the username and one for the domain). (The formats are mixed up
within the mailing list file.)
(I can handle the code for looping through each
line of the file. But I am stumped as to the precise regexp I need to use to extract the email address and whether or not I need to use
split() or simply s/// or perhaps m// to do the trick.)
Perhaps there is more than one way to do it. :)