vote up 2 vote down star

I'm parsing some big log files and have some very simple string matches for example

if(m/Some String Pattern/o){
    #Do something
}

It seems simple enough but in fact most of the matches I have could be against the start of the line, but the match would be "longer" for example

if(m/^Initial static string that matches Some String Pattern/o){
    #Do something
}

Obviously this is a longer regular expression and so more work to match. However I can use the start of line anchor which would allow an expression to be discarded as a failed match sooner.

It is my hunch that the latter would be more efficient. Can any one back me up/shoot me down :-)

flag

73% accept rate
If you're anchoring to the beginning of a line, you need to add the multiline modifier: m/^anchored regex/m – Alan Moore Feb 14 at 6:47

7 Answers

vote up 4 vote down check

I think you'll find that starting your regex with ^ will definitely be faster, because the regex engine doesn't have to look any further than the left edge of the string for a match.

This is something that you could easily test and measure, of course. Do a regex match 10 million times or so, measure how long it takes, then try again with a different regex.

link|flag
vote up 4 vote down

The line anchor makes it faster. I have to add though that the //o modifier is not necessary here, in fact it does nothing. That's code smell to me.

There used to be valid usages for //o, but these days that is provided by qr//

link|flag
vote up 3 vote down

I did some timings as recommended. here are the results for my app. Its the whole app, not just the regex searches. It scans 60,000 lines. 11 Regular expressions average short length was about 30 characters. The longer but anchored ones are about 120.

Short
   real    0m58.780s
   user    0m54.940s
   sys     0m0.790s

Long (anchored)
   real    0m54.260s
   user    0m53.630s
   sys     0m0.490s

Long (not anchored)
   real    0m54.705s
   user    0m54.130s
   sys     0m0.400s

So anchoring the long strings is slightly faster. Although not by much. It would appear that if my strings were any larger it might be a different matter.

link|flag
The difference between the times of Long(anchored) and Long(not anchored) is small enough to fall within the noise range of benchmarking -- unless you're running in single-user mode with no other processes running. The responsible conclusion is that it makes no difference. – Schwern Feb 14 at 0:22
vote up 2 vote down

Speed of an RE depends on two factors, the RE itself and the data being passed through the RE. In general, an anchored RE (start or end) with no backtracking will be faster than others. But if you're processing a file where every line is empty, there's no speed difference between /^hello/ and /hello/ (at least if the RE engine is written correctly).

But the rule I follow is: measure, don't guess.

link|flag
vote up 0 vote down

I vote for the one anchored at the beginning for exactly the reason you state!

link|flag
vote up 0 vote down

Oh yes the latter way faster.

link|flag
vote up 0 vote down

Are you saying you can anchor the regex by adding a static prefix, like this?

/^blah blah The Real Regex/

That certainly won't hurt performance, and it will probably help, but not for the reason you think. Although they're best known for the "magical" stuff like anchors and lookarounds and capturing groups, what regex engines are best at is matching literal sequences of characters. The longer the sequence, the faster the match (up to a point, of course).

In other words, it's the addition of the static prefix, not the anchor, that's giving you the boost.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.