Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: How does one get all possible matches from regex?

by LanX (Saint)
on Dec 10, 2013 at 03:38 UTC ( [id://1066365]=note: print w/replies, xml ) Need Help??


in reply to Re: How does one get all possible matches from regex?
in thread How does one get all possible matches from regex?

I didnt understand the OP, but is this not easier?

 print $1 while /(REGEX)/g

Cheers Rolf

( addicted to the Perl Programming Language)

Replies are listed 'Best First'.
Re^3: How does one get all possible matches from regex?
by educated_foo (Vicar) on Dec 10, 2013 at 04:17 UTC
    They're different: /X/g does non-overlapping matches; /X(?{print$&})(?!)/ does all matches. It depends what you want.
      Well it took me a while to understand whats going on in your code...

      Please note that the while-loop is redundant (and confusing =)

      DB<138> $_=" x1x2x3x x4x5x" => " x1x2x3x x4x5x" DB<139> ; /x(\d)x(?{print "<$1>\t"})(?!)/ <1> <2> <3> <4> <5>

      by placing an _empty_ negative lookahead you are forcing your regex to reject all matches and to backtrack through the whole string.

      But the embedded perlcode (which is an experimental feature IIRC) prints the temporary match before the next attempt is started.

      edit

      as a side note, the same effect can be achieved with "conventional" means (i.e. manipulation of pos)

      DB<154> while ( /x(\d)x/g ) { print $1; pos($_) -= length($ &)-1 } 12345

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (7)
As of 2024-04-23 18:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found