vote up 18 vote down star
3

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')
flag

68% accept rate

9 Answers

vote up 28 vote down check

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 re.match()), so you're really only changing WHEN the regex gets compiled, and shouldn't be saving much time at all - only the time it takes to check the cache (a key lookup on an internal dict type).

From module re.py (comments are mine):

def match(pattern, string, flags=0):
    return _compile(pattern, flags).match(string)

def _compile(*key):

    # Does cache check at top of function
    cachekey = (type(key[0]),) + key
    p = _cache.get(cachekey)
    if p is not None: return p

    # ...
    # Does actual compilation on cache miss
    # ...

    # Caches compiled regex
    if len(_cache) >= _MAXCACHE:
        _cache.clear()
    _cache[cachekey] = p
    return p

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.

link|flag
Great answer, I didn't realize it cached them this way :) – Kiv Jan 16 at 22:10
thanks kiv. I had a hunch, but this question finally made me look for myself. – Triptych Jan 16 at 22:15
1  
Your conclusion is inconsistent with your answer. If regexs are compiled and stored automatically there is no need in most cases to do it by hand. – J.F. Sebastian Jan 17 at 0:21
2  
J. F. Sebastian, it serves as a signal to the programmer that the regexp in question will be used a lot and is not meant to be a throwaway. – kaleissin Jan 20 at 14:28
1  
More than that, I'd say that if you don't want to suffer the compile & cache hit at some performance critical part of your application, you're best off to compile them before hand in a non-critical part of your application. – Eddie Parker Jan 20 at 18:10
show 4 more comments
vote up 0 vote down

(months later) it's easy to add your own cache around re.match, or anything else for that matter --

""" Re.py: Re.match = re.match + cache  
    efficiency: re.py does this already (but what's _MAXCACHE ?)
    readability, inline / separate: matter of taste
"""

import re

cache = {}
_re_type = type( re.compile( "" ))

def match( pattern, str, *opt ):
    """ Re.match = re.match + cache re.compile( pattern ) 
    """
    if type(pattern) == _re_type:
        cpat = pattern
    elif pattern in cache:
        cpat = cache[pattern]
    else:
        cpat = cache[pattern] = re.compile( pattern, *opt )
    return cpat.match( str )

# def search ...

A wibni, wouldn't it be nice if: cachehint( size= ), cacheinfo() -> size, hits, nclear ...

link|flag
vote up 1 vote down

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.

foo_pat = re.compile('foo',re.I)

foo_pat.findall('some string FoO bar')
>> ['FoO']

vs

re.findall('(?i)foo','some string FoO bar')
>> ['FoO']
link|flag
vote up 1 vote down

Interestingly, compiling does prove more efficient for me (Python 2.5.2 on Win XP):

import re
import time

rgx = re.compile('(\w+)\s+[0-9_]?\s+\w*')
str = "average    2 never"
a = 0

t = time.time()

for i in xrange(1000000):
    if re.match('(\w+)\s+[0-9_]?\s+\w*', str):
    #~ if rgx.match(str):
        a += 1

print time.time() - t

Running the above code once as is, and once with the two if lines commented the other way around, the compiled regex is twice as fast

link|flag
Same issue as with dF's performance comparison. It's not really fair unless you include the performance cost of the compile statement itself. – Carl Meyer Feb 1 at 19:27
Carl, I disagree. The compile is only executed once, while the matching loop is executed a million times – eliben Feb 1 at 20:19
@eliben: I agree with Carl Meyer. The compilation takes place in both cases. Triptych mentions that caching is involved, so in an optimal case (re stays in cache) both approaches are O(n+1), although the +1 part is kind of hidden when you don't use re.compile explicitly. – paprika Feb 19 at 4:02
vote up 9 vote down

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 0|[1-9][0-9]* (integer in base 10 without leading zeros) can be complex enough that you'd rather not have to retype it, check if you made any typos, and later have to recheck if there are typos when you start debugging. Plus, it's nicer to use a variable name such as num or num_b10 than 0|[1-9][0-9]+.

It's certainly possible to store strings and pass them to re.match; however, that's less readable, imho.

m = re.match(num, input)
# vs
m = num.match(input)

Or was that re.match(input, num)? Guess I better go look up the docs so I can get this right before I can move on. Even with the best IDE and docs it's another obstacle; essentially the first form has 4 actors (re, match, num, and input) instead of the 3 in the latter.

link|flag
1  
Ten bonus points if you spotted the typo in the repeated regex before reading this comment! :P – Roger Pate Jan 17 at 16:50
I agree with this answer; oftentimes using re.compile results in more, not less readable code. – Carl Meyer Feb 1 at 19:26
R.Pate: the first 0, because you said "without leading zeros"? – Adriano Varoli Piazza Mar 18 at 22:32
No, the leading "0|" is to allow the value "0". The error is + instead of *. – Roger Pate Jun 8 at 20:35
vote up 1 vote down

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.

link|flag
As far as I can tell from my brief flick through, Python in a Nutshell doesn't mention use without re.compile(), which made me curious. – Mat Jan 16 at 21:55
vote up 2 vote down

FWIW:

$ python -m timeit -s "import re" "re.match('hello', 'hello world')"
100000 loops, best of 3: 3.82 usec per loop

$ python -m timeit -s "import re; h=re.compile('hello')" "h.match('hello world')"
1000000 loops, best of 3: 1.26 usec per loop

so, if you're going to be using the same regex a lot, it may be worth it to do re.compile (especially for more complex regexes).

The standard arguments against premature optimization apply, but I don't think you really lose much clarity/straightforwardness by using re.compile if you suspect that your regexps may become a performance bottleneck.

link|flag
Major problems with your methodology here, since the setup argument is NOT including in the timing. Thus, you've removed the compilation time from the second example, and just average it out in the first example. This doesn't mean the first example compiles every time. – Triptych Jan 16 at 22:12
Yes, I agree that this is not a fair comparison of the two cases. – Kiv Jan 16 at 22:15
I see what you mean, but isn't that exactly what would happen in an actual application where the regexp is used many times? – dF Jan 17 at 0:05
@dF: You're right, IF you only care about performance in one particular part of your code, and you're able to pre-compile the regex in another part. Otherwise, you need to time the re.compile call and include that in the second number for it to be a fair comparison. – Carl Meyer Feb 1 at 19:25
vote up -2 vote down

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)

Calling the compiled pattern object's search function with the string 'M' accomplishes the same thing as calling re.search with both the regular expression and the string 'M'. Only much, much faster. (In fact, the re.search function simply compiles the regular expression and calls the resulting pattern object's search method for you.)

link|flag
i didn't downvote you, but technically this is wrong: Python won't recompile anyway – Triptych Jan 16 at 22:21
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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