in reply to Shuckin' the Email Addy
With that in mind, if your data file is as simple as what you say, I would do something like this:
(undef, $address, undef) = split '', $line;
I wouldn't bother with trying to match anything else, I'd just split. Again, this depends on your text file being *very* simple, as simple as you've described it above.
For anything else, the modules Email::Find and Email::Valid might come in handy.
|
---|
Replies are listed 'Best First'. | |
---|---|
RE: Re: Shuckin' the Email Addy
by Fastolfe (Vicar) on Sep 07, 2000 at 17:14 UTC | |
by merlyn (Sage) on Sep 07, 2000 at 17:19 UTC | |
RE: Re: Shuckin' the Email Addy
by Anonymous Monk on Sep 07, 2000 at 06:53 UTC |