debian man page for regexp::common::email::address

Query: regexp::common::email::address

OS: debian

Section: 3pm

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

Regexp::Common::Email::Address(3pm)			User Contributed Perl Documentation		       Regexp::Common::Email::Address(3pm)

NAME
Regexp::Common::Email::Address - Returns a pattern for Email Addresses
SYNOPSIS
use Regexp::Common qw[Email::Address]; use Email::Address; while (<>) { my (@found) = /($RE{Email}{Address})/g; my (@addrs) = map $_->address, Email::Address->parse("@found"); print "X-Addresses: ", join(", ", @addrs), " "; }
DESCRIPTION
$RE{Email}{Address} Provides a regex to match email addresses as defined by RFC 2822. Under "{-keep}", the entire match is kept as $1. If you want to parse that further then pass it to "Email::Address->parse()". Don't worry, it's fast.
SEE ALSO
Email::Address, Regexp::Common, perl.
AUTHOR
Casey West, <casey@geeknest.com>.
COPYRIGHT
Copyright (c) 2005 Casey West. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2005-01-06 Regexp::Common::Email::Address(3pm)
Related Man Pages
email::address(3) - centos
email::folder(3pm) - debian
email::mime::contenttype(3pm) - debian
email::sender(3pm) - debian
email::thread(3pm) - debian
Similar Topics in the Unix Linux Community
Adding the individual columns of a matrix.
Is UNIX an open source OS ?
One instance of comparing grep and awk
Find columns in a file based on header and print to new file
My first PERL incarnation... Audio Oscillograph