Is there any benefit in using compile for regular expressions in Python?
h = re.compile('hello')
h.match('hello world')
vs
re.match('hello', 'hello world')
|
3
|
|
|
|
|
|
Good question I've had a lot of experience running a compiled regex 1000s of times versus compiling on-the-fly, and have not noticed any perceivable difference. Obviously, this is colloquial, and certainly not a great argument against compiling, but I've found the difference to be negligible. EDIT:
After a quick glance at the actual Python 2.5 library code, I see that Python internally compiles AND CACHES regexes whenever you use them anyway (including calls to From module re.py (comments are mine):
I think the bottom line is that compiling is fine to do, perhaps even preferable depsite the minor readability hit, but you shouldn't expect any massive gains from pre-compilation. |
||||||||||||||||
|
|
|
(months later) it's easy to add your own cache around re.match, or anything else for that matter --
A wibni, wouldn't it be nice if: cachehint( size= ), cacheinfo() -> size, hits, nclear ... |
||
|
|
|
|
in general I find it is easier to use flags (at least easier to remember how), like re.I when compiling patterns than to use flags inline.
vs
|
||
|
|
|
|
Interestingly, compiling does prove more efficient for me (Python 2.5.2 on Win XP):
Running the above code once as is, and once with the two |
||||||
|
|
|
For me, the biggest benefit to re.compile isn't any kind of premature optimization (which is the root of all evil, anyway). It's being able to separate definition of the regex from its use. Even a simple expression such as It's certainly possible to store strings and pass them to
Or was that |
||||||||||
|
|
|
This is a good question. You often see people use re.compile without reason. It lessens readability. But sure there are lots of times when pre-compiling the expression is called for. Like when you use it repeated times in a loop or some such. It's like everything about programming (everything in life actually). Apply common sense. |
||
|
|
|
FWIW:
so, if you're going to be using the same regex a lot, it may be worth it to do The standard arguments against premature optimization apply, but I don't think you really lose much clarity/straightforwardness by using |
||||||||
|
|
|
My understanding is that those two examples are effectively equivalent. The only difference is that in the first, you can reuse the compiled regular expression elsewhere without causing it to be compiled again. Here's a reference for you: (http://diveintopython.org/refactoring/refactoring.html)
|
||
|
|
|
Regular Expressions are compiled before being used when using the second version. If you are going to executing it many times it is definatly better to compile it first. If not compiling every time you match for one off's is fine. |
||
|
|