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

Is there any way to beat the 100-group limit for regular expressions in Python? Also, could someone explain why there is a limit. Thanks.

share|improve this question
wow!, 100 is a big number for a regex :O – Andrea Ambu Jan 25 '09 at 22:52
Can you explain why you need more than 100 groups? Perhaps we can help you find an alternate solution. – Suraj Barkale Jan 26 '09 at 21:45
Yet again, I wish I'd dare to tag this you-dont-want-this. – phihag Jan 27 '09 at 0:42

8 Answers

up vote 1 down vote accepted

I'm not sure what you're doing exactly, but try using a single group, with a lot of OR clauses inside... so (this)|(that) becomes (this|that). You can do clever things with the results by passing a function that does something with the particular word that is matched:

 newContents, num = cregex.subn(lambda m: replacements[m.string[m.start():m.end()]], contents)

If you really need so many groups, you'll probably have to do it in stages... one pass for a dozen big groups, then another pass inside each of those groups for all the details you want.

share|improve this answer
I used the or method you mentioned and a few tricks of my own. Thanks Jim. – Evan Fosmark Jan 27 '09 at 7:49

There is a limit because it would take too much memory to store the complete state machine efficiently. I'd say that if you have more than 100 groups in your re, something is wrong either in the re itself or in the way you are using them. Maybe you need to split the input and work on smaller chunks or something.

share|improve this answer
I agree with your sentiment. If you're hitting the 100 group regex limit, I think there's something wrong with the design. – Kamil Kisiel Jan 25 '09 at 23:09
1  
Sorry, but I disagree - what is "too much memory" and why should the module hard code this threshold? There are (rare) cases when this usage is justified. I have (sadly) come across such a case myself. I'm parsing a complex grammar with pyparsing and (alas) found out that pyparsing is too slow. I'm now auto-generating a regular expression to match my grammar (and I've hit the hard coded 100 brick wall). – Tal Weiss Apr 5 '11 at 21:07

First, as others have said, there are probably good alternatives to using 100 groups. The re.findall method might be a useful place to start. If you really need more than 100 groups, the only workaround I see is to modify the core Python code.

In [python-install-dir]/lib/sre_compile.py simply modify the compile() function by removing the following lines:

# in lib/sre_compile.py
if pattern.groups > 100:
    raise AssertionError(
        "sorry, but this version only supports 100 named groups"
        )

For a slightly more flexible version, just define a constant at the top of the sre_compile module, and have the above line compare to that constant instead of 100.

Funnily enough, in the (Python 2.5) source there is a comment indicating that the 100 group limit is scheduled to be removed in future versions.

share|improve this answer

It's very ease to resolve this error: Open the re class and you'll see this constant _MAXCACHE = 100. Change the value to 1000, for example, and do a test.

share|improve this answer
You generally don't want to change built-in classes, as this causes an application to work only on your own install. This leads to a maintenance nightmare. – Egon Nov 19 '12 at 17:14

I would say you could reduce the number of groups by using non-grouping parentheses, but whatever it is that you're doing seems like you want all these groupings.

share|improve this answer

in my case, i have a dictionary of n words and want to create a single regex that matches all of them.. ie: if my dictionary is

hello
goodbye

my regex would be: (^|\s)hello($|\s)|(^|\s)goodbye($|\s) ... it's the only way to do it, and works fine on small dictionaries, but when you have more tan 50 words, well...

share|improve this answer
Sounds like the same problem to me, with the same solution: \b(hello|goodbye|whatever)\b If that doesn't work, ask a new question so we can help you properly. – Alan Moore May 26 '10 at 6:01

If I'm not mistaken, the "new" regex module (currently third-party, but intended to eventually replace the re module in the stdlib) does not have this limit, so you might give that a try.

share|improve this answer

I found the easiest way was to

import regex as re

instead of

import re

The default _MAXCACHE for regex is 500 instead of 100 I believe. This is one of the many reasons I find regex to be a better module than re.

share|improve this answer

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.