Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re^2: substitution in regular expression

by aeqr (Novice)
on Apr 23, 2014 at 22:27 UTC ( [id://1083479]=note: print w/replies, xml ) Need Help??


in reply to Re: substitution in regular expression
in thread substitution in regular expression

Thanks for the idea, I'll write it down. Just one thing, could you explain the:
(?{print "$1\n"})(?!)
I don't understand the question mark before the print block. Also why the (?!) at the end. I noticed that removing it only prints ABC, but I don't understand why. Thank you

Replies are listed 'Best First'.
Re^3: substitution in regular expression
by trizen (Hermit) on Apr 23, 2014 at 22:52 UTC

    Short explanation: (?{...}) means to execute arbitrary Perl code inside a regular expression, and (?!) makes the regex engine to fail and backtrack, trying to match from the last_pos + 1. When it starts matching ABC, it prints it, fails, backtracks and starts matching from B the next three letters, giving us BCD. The process repeats until the internal regex counter reaches the end of the string.

    I know, I'm really bad at explaining things to humans, but, fortunately, Athanasius explained this better once.

    Please see: Re: RegEx + vs. {1,}

      Thanks a lot! Very well explained actually. It's a nice trick to know.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (2)
As of 2024-04-24 23:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found