Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^6: Why is "any" slow in this case?

by Anonymous Monk
on Jul 28, 2025 at 20:20 UTC ( [id://11165844]=note: print w/replies, xml ) Need Help??


in reply to Re^5: Why is "any" slow in this case?
in thread Why is "any" slow in this case?

I can't follow, since you are using the /g modifier, each iteration will only capture 2 groups and then continue where it left of

/g in list context consumes till the end of string; iterating with "while" is infinite loop (all but two captures are thrown away each time), or did I misunderstood completely? OK, nevermind

Replies are listed 'Best First'.
Re^7: Why is "any" slow in this case?
by LanX (Saint) on Jul 30, 2025 at 21:41 UTC
    > (all but two captures are thrown away each time)

    you are right I misremembered the /g, /c, pos(), \G mechanisms which only work in scalar context. Mea Culpa.

    But you can grep all @matches and post process them in pairs, like

    use v5.14; use warnings; say "INPUT: ",my $str = join " ", 11 .. 19; my @matches = $str =~ m/(\d+) (\d+)/g ; while (my ($c,$r) = splice @matches,0,2) { say "$c - $r"; }

    INPUT: 11 12 13 14 15 16 17 18 19 11 - 12 13 - 14 15 - 16 17 - 18

    If you want only two capture per string you can also use /gc to avoid an infinite loop.

    use v5.14; use warnings; say "INPUT: ",my $str = join " ", 1..9; my $stop=5; while ( my ($c,$r) = ($str =~ m/(\d+) (\d)/gc) ) { say "$c $r"; die unless $stop--; }

    INPUT: 1 2 3 4 5 6 7 8 9 1 2

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    see Wikisyntax for the Monastery

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (2)
As of 2026-03-08 23:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.