in reply to An email regex

I use Email::Valid with good results.

use Email::Valid; use CGI qw/:standard/; if ( !Email::Valid->address( $query->param('email') ) { print "E-mail address is not valid or is blank"; }

—Brad
"The important work of moving the world forward does not wait to be done by perfect men." George Eliot