Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^2: multiple matches per line *AND* multiple capture groups per match

by educated_foo (Vicar)
on Dec 21, 2013 at 23:25 UTC ( [id://1068068]=note: print w/replies, xml ) Need Help??


in reply to Re: multiple matches per line *AND* multiple capture groups per match
in thread multiple matches per line *AND* multiple capture groups per match

This. Your solution is fine, but you need to do a bit of postprocessing, e.g.
if (@groups = /$test_regexp/g) { while (@groups) { ($url, $file) = splice @groups, 0, 2; # ... } }
or use a loop:
while (/$test_regexp/g) { ($url, $file) = ($1, $2); # ... }

Replies are listed 'Best First'.
Re^3: multiple matches per line *AND* multiple capture groups per match
by Special_K (Monk) on Dec 22, 2013 at 01:41 UTC
    Thanks, that also solves my problem.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (2)
As of 2024-04-25 21:03 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found