in reply to Re: Re: Re: Why do we say the =~ operator "binds"?
in thread Why do we say the =~ operator "binds"?
This is IMHO more legible, as long as your public is fluent in Perl, or just knows the basics.foreach (@email_addresses) { if ( /[a-zA-Z0-0.]+\@[a-zA-Z0-0.]+/ ) { .... } }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Re: Re: Re: Why do we say the =~ operator "binds"?
by William G. Davis (Friar) on Apr 20, 2004 at 04:48 UTC | |
by emazep (Priest) on Apr 20, 2004 at 05:08 UTC |