Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re^2: Perl oddities

by gaal (Parson)
on Mar 01, 2005 at 19:16 UTC ( [id://435579]=note: print w/replies, xml ) Need Help??


in reply to Re: Perl oddities
in thread Perl oddities

Often you can just assign the results of the match. Make sure you are in list context if you have only one capture.

my ($this, $that, $some, $other) = /(this)(that).*(some)....(other)$/; my ($cap) = /hello(there)/; # OK my $cap = /hello(there)/; # BUG

Replies are listed 'Best First'.
Re^3: Perl oddities
by Anonymous Monk on Mar 02, 2005 at 13:38 UTC
    Often you can just assign the results of the match.

    But not if you use /g, as /g acts quite differently in scalar and in list context.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://435579]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-19 02:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found