in reply to Re: An email regex
in thread An email regex

The use of Regexp::Common can be a bit confusing if you have not used it before. Here is a snippet that may help:
use Regexp::Common qw(Email::Address); ## and later if ($data =~ $RE{Email}{Address}{-keep}) { $email = $1; }
Cheers.