Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^7: A regex that only matches at offset that are multiples of a given N? (Update:almost perfect!)

by smls (Friar)
on Feb 13, 2013 at 21:11 UTC ( [id://1018638]=note: print w/replies, xml ) Need Help??


in reply to Re^6: A regex that only matches at offset that are multiples of a given N? (Update:almost perfect!)
in thread A regex that only matches at offset that are multiples of a given N?

If it was possible to avoid running 3 orders of magnitude slower

Well, in this benchmark the embedded code gets called on every single character in the string, while in the problem at hand it would only get called once for every correct match. Finding the match in the first place would happen completely within the regex engine.

If you are using the regex with a while loop, you could move the pos()-incrementing into the already existing loop body to avoid creating an additional scope:

while( $input =~ m{\G(?:.{$n})*?(?=fred(....))}g ) { pos($input) += $n; # ... # do stuff with $1 # ... }

This could also be adapted to ensure that new occurrences of "fred" may not be matched inside the (....) that belongs to the previous match, by modifying the pos()-incrementing line like this:

pos($input) += $n * int((length('fred'.$1) - 1) / $n + 1);

  • Comment on Re^7: A regex that only matches at offset that are multiples of a given N? (Update:almost perfect!)
  • Select or Download Code

Replies are listed 'Best First'.
Re^8: A regex that only matches at offset that are multiples of a given N? (Update:almost perfect!)
by BrowserUk (Patriarch) on Feb 13, 2013 at 23:12 UTC

    You're right!

    Moving the pos modification into the while loop body means that it only gets executed after successful (aligned) matches.

    And that helps my performance a lot.

    Thank you. Especially for persisting when I wasn't seeing the wood for the trees.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (3)
As of 2024-04-23 06:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found