Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^2: regex gotcha moving from 5.8.8 to 5.30.0?

by AnomalousMonk (Archbishop)
on Feb 10, 2021 at 03:48 UTC ( [id://11128164]=note: print w/replies, xml ) Need Help??


in reply to Re: regex gotcha moving from 5.8.8 to 5.30.0?
in thread regex gotcha moving from 5.8.8 to 5.30.0?

There may be a way to do it without all the backrefs.

I don't understand. There don't seem to be any backreferences in any of the regexes presented so far. Can you please clarify?


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^3: regex gotcha moving from 5.8.8 to 5.30.0?
by kschwab (Vicar) on Feb 10, 2021 at 03:54 UTC
    Bad terminology. I mean the \G having to refer back to the last match.
      ... \G having to refer back to the last match.

      IIUC, the \G anchor refers to the pos of the string against which the match is being attempted (the pos from a previous, unsuccessful match attempt having been preserved by the /c modifier), and so should should be pretty cheap/quick. Is your experience otherwise?


      Give a man a fish:  <%-{-{-{-<

        No, but it's a regression, and seems to be narrowed down somewhere in:
        $text =~ /\G \s* ^ \s* begfoo \s+ (\S+?) \s* \( \s* (.*?) \s +* \) \s* ;/gcmsx
        And it sounds like replacing .*? with [^;]*? was tried.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-18 09:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found