Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: You won't believe what this regular expression does!

by haukex (Archbishop)
on Feb 25, 2021 at 11:32 UTC ( [id://11128777]=note: print w/replies, xml ) Need Help??


in reply to You won't believe what this regular expression does!

Surprising, yes, but I guess I'd call it a pitfall of both * and a zero-width assertion. s/o*$/O/gm first matches "hello\n" and the $ assertion is satisfied, and since it's zero-width the matching position is left just before the \n. Then it matches "hello \n" because o* and $ are satisfied, and then the regex engine matches the same thing again but the rules in Repeated Patterns Matching a Zero length Substring kick in, advancing the position past the \n instead. Update: You can see this in action with: perl -MRegexp::Debugger -e '"hello\nfoo"=~s/o*$/O/gmr' Update 2: Note the same thing happens again with foo - it first replaces oo with O, and then adds the second O because it matched the $ again. You can see this with "o\no".

Log In?
Username:
Password:

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

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

    No recent polls found