in reply to RegExp help

If you're not good at RegEx, I wouldn't suggest trying to parse email addresses with them. It's harder than it looks and you can get yourself into trouble using regular expressions like that.

Instead, try something like Email::Valid. From the docs for Email::Valid:

use Email::Valid; print (Email::Valid->address('me@example.com') ? 'yes' : 'no');

Cheers,

Brent

-- Yeah, I'm a Delt.

Replies are listed 'Best First'.
Re^2: RegExp help
by heatblazer (Scribe) on Mar 26, 2012 at 15:45 UTC

    Thank you, but I`ll try learning regex because I just want to know it. Will keep in mind this module you suggested.