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.
|
|
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:
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. |
|||
|
|
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. |
|||||||
|
|
First, as others have said, there are probably good alternatives to using 100 groups. The In
For a slightly more flexible version, just define a constant at the top of the 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. |
||||
|
|
|
It's very ease to resolve this error:
Open the |
||||
|
|
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. |
|||
|
|
|
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
my regex would be: |
||||
|
|
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. |
|||
|
|
|
I found the easiest way was to
instead of
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. |
|||
|
|