Search Results

19
votes

Why is my Perl regex using so much memory?

Just a quick sanity check, are you mentioning $&, $` or $' (sometimes called $MATCH, $PREMATCH and $POSTMATCH) anywhere in your code? If so, Perl will copy your entire string for every …
1
vote

Is there a Perl function to turn a string into a regexp to use that string as pattern?

PS: in addition to the answer question above, I welcome any feedback on Perl usage in the above as I'm still learning. The best advice I can give for Perl …
4
votes

How can I read a custom defined pattern from a file in Perl?

If you're using Perl 5.10, you can do something very similar to what you have now but with a much nicer layout by using the given/when structure: use 5.010; while (<ERR_LOG>) …
12
votes

How can I profile Perl regexes?

Perl comes with the Benchmark module, which can take a number of code samples, and answer the question of "which one is faster? …