Help for this page
# array my @emails = (); while (<DATA>) { push @emails, (split /[<>]/)[1,3,5]; }
# hash undef $/; my %emails = split /[<>\n]+/, <DATA>;