logo       

Re: foreachLine substitution code reference: msg#00061

Subject: Re: foreachLine substitution code reference
* Tassilo von Parseval (tassilo.parseval@xxxxxxxxxxxxxxxxxxx) [030525 08:29]:
> On Sun, May 25, 2003 at 02:29:52PM +0800 Greg Matheson wrote:
> > This example in the Mail::Message::Body foreachLine docs
> > doesn't work for me.
> > 
> >     $content->foreachLine( sub {(my $x=$_) =~ s/a/A/} );
> > This does:
> >     $content->foreachLine( sub {(my $x=$_) =~ s/a/A/; return $x} );
> > The other examples work.

You're right.

> Your on-the-fly assignment tends to trick the reader into believing that
> $x is returned but it is really equivalent this expansion above.
> 
> I often make the same mistake in a map
>     @new_list = map { s/foo/bar/ } @list;
> 
> when I meant to write
>     @new_list = map { s/foo/bar/; $_ } @list;

This last example is a little silly, because it modifies both @list and
@new_list.  I would prefer to write that as:

   s/foo/bar/ for @list;
   @new_list = @list;

Probably you also mean something like:

   @new_list = map { (my $x = $_) =~ s/foo/bar/; $x } @list;
                                                 ^^^ donot forget!  ;-b
-- 
               MarkOv       %-]

------------------------------------------------------------------------
drs Mark A.C.J. Overmeer                                MARKOV Solutions
       Mark@xxxxxxxxxxxx                          solutions@xxxxxxxxxxxx
http://Mark.Overmeer.net                   http://solutions.overmeer.net




<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
audio.irate.dev...    yellowdog.gener...    ietf.ips/2002-0...    xfree86.fonts/2...    busybox/2003-07...    emacs.jdee/2004...    linux.mandrake....    hardware.microc...    user-groups.lin...    science.analysi...    version-control...    db.filemaker.de...    cluster.openmos...    mail.eyebrowse....    text.xml.xerces...    kde.devel.kwrit...    finance.moneyda...    gcc.regression/...    network.routing...    os.freebsd.deve...    recreation.radi...    qnx.openqnx.dev...    python.xml/2002...   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe