Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Variable matching on a regex

by almut (Canon)
on Jun 17, 2010 at 10:02 UTC ( [id://845178]=note: print w/replies, xml ) Need Help??


in reply to Variable matching on a regex

Not an answer to your question, but

(my ($d1, $d2, $d3, $d4, $d5, $d6) = $_) = m/$regex/;

would more naturally be written as

my ($d1, $d2, $d3, $d4, $d5, $d6) = /$regex/;

which is the same as

my ($d1, $d2, $d3, $d4, $d5, $d6) = $_ =~ /$regex/;

(The temporary assignment of $_ to $d1 in your variant doesn't do any harm, but doesn't help much either.)


Update: as for what you're attempting to do, IMHO, it would be a perfectly sensible thing to want to have as an option  (I also would have had uses for it occasionally).

However, AFAIK, there is no way to do it, except if you implement it yourself with (?{...}) code or some such (as shown further down) — which of course ruins any elegance the approach might have had otherwise.

Replies are listed 'Best First'.
Re^2: Variable matching on a regex
by LaintalAy (Sexton) on Jun 17, 2010 at 12:31 UTC
    Thanks a lot, you're right.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (9)
As of 2024-04-23 08:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found