Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In this post it's said that precompiling your regular expressions will improve script performance. The author proves it by performance test. However, as far as I understand, the post is talking about the cases when you use your regular expressions repeatedly. What if there are lots of regular expressions in the script, but each is used only once? Will there be a performance benefit in precompiling regex which is used only once throughout the script?

share|improve this question
You may get some perceived benefit by compiling up front while the page is loading and users expect a bit of slowness. But that's just shifting the work to some other time, it doesn't save anything and the difference will likely be imperceptible. – RobG Feb 18 at 23:50

1 Answer

up vote 0 down vote accepted

If it's only used once - then just use regexp literal.

Your point is valid - it only makes sense when you use the same regular expression a lot.

share|improve this answer
That is what I suspected. But I'm losing the point of the aforementioned post then. Because it is just about everything, be it regex, string, function or any other value: if it is used repeatedly, it would be more efficient to assign it to the variable. What am I missing? – tch3r Feb 18 at 23:59
1  
@user2061071: not an assignment, but a compilation step is expensive. Though it's valid for functions as well, because it's a declaration step there you may avoid if you store an anonymous function in a variable – zerkms Feb 19 at 0:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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