Anusha Krishna chand wrote:
>
> How to validate an email id using perl regular expression .
This should help you.
Rob
use strict;
use warnings;
use Regexp::Common 'Email::Address';
my $email_re = $RE{Email}{Address};
foreach (
'"Anusha Krishna chand" <[EMAIL PROTECTED]>',
'"R
From: Dermot
> 2008/11/10 Rob Coops <[EMAIL PROTECTED]>:
>> On Mon, Nov 10, 2008 at 11:55 AM, Anusha Krishna chand <
>> [EMAIL PROTECTED]> wrote:
>>
>>> Hi All,
>>> How to validate an email id using perl regular expression
.
>>>
> ...
>>
>> As for how to actually do that... there are a
2008/11/10 Rob Coops <[EMAIL PROTECTED]>:
> On Mon, Nov 10, 2008 at 11:55 AM, Anusha Krishna chand <
> [EMAIL PROTECTED]> wrote:
>
>> Hi All,
>> How to validate an email id using perl regular expression .
>>
...
>
> As for how to actually do that... there are a lot of different ways an
On Mon, Nov 10, 2008 at 11:55 AM, Anusha Krishna chand <
[EMAIL PROTECTED]> wrote:
> Hi All,
> How to validate an email id using perl regular expression .
>
First of all it would be nice to see what you tried so far with out that it
seems like you are simply using thsi mailing list
> "Shane" == Shane McElwee <[EMAIL PROTECTED]> writes:
Shane> Below I've a regular expression that checks the syntax of an email address.
Shane> The problem I'm having is with the underscore "_" . I've tried some
Shane> different forms of syntax but I know its something simple I'm missing. I
On Wednesday, May 1, 2002, at 12:43 , McElwee, Shane wrote:
> Below I've a regular expression that checks the syntax of an email
> address.
> The problem I'm having is with the underscore "_" . I've tried some
> different forms of syntax but I know its something simple I'm missing. I
> think I'
Shane McElwee wrote:
>
> Below I've a regular expression that checks the syntax of an email address.
> The problem I'm having is with the underscore "_".
The \w character class includes the underscore character (\w eq
[a-zA-Z0-9_])
> I've tried some
> different forms of syntax but I know its so
Take a look at Email::Valid
Cheers,
Kevin
On Wed, May 01, 2002 at 03:43:07PM -0400, McElwee, Shane ([EMAIL PROTECTED]) said
something similar to:
> Below I've a regular expression that checks the syntax of an email address.
> The problem I'm having is with the underscore "_" . I've tried some
>
On Tue, Feb 19, 2002 at 03:53:57PM -0800, Roger Morris ([EMAIL PROTECTED]) said
something similar to:
> I hadn't found that module when I was searching the net. the
> Email::Validdoesn't catch the @this_host.com It also doesn't catch |
> in the email, which I would've thought shouldn't be
At 03:35 PM 2/19/2002 -0800, Randal L. Schwartz wrote:
> > "Roger" == Roger Morris <[EMAIL PROTECTED]> writes:
>
>Roger> I've been working on email validation for a script. The examples I've
>Roger> seen haven't exactly done that great of a job. I've taken the code
>Roger> and messed with it
> "Roger" == Roger Morris <[EMAIL PROTECTED]> writes:
Roger> I've been working on email validation for a script. The examples I've
Roger> seen haven't exactly done that great of a job. I've taken the code
Roger> and messed with it some.
But not enough. :)
Roger> sub valid_email ()
Roger>
Hi Roger,
Have you looked at the Email::Valid and Mail::Address modules? Mail::Address
will piece apart an email address (address, phrase, etc..) and Email::Valid can
do RFC822 some address validation (including MX host checking).
Cheers,
Kevin
On Tue, Feb 19, 2002 at 11:37:49AM -0800, Roger Mo
12 matches
Mail list logo