vote up 1 vote down star

Balancing groups regexes make my head explode. I've got this string i'm trying to match:

other stuff blah blah....
                    {
                        stuff stuff
                        {key:
                            stuff
                            stuff
                        }
                    } more stuff.....

Here's my regex:

[^{}]*\{(?>[^{}]+|\{(?:\w+:)?(?<DEPTH>)|\}(?<-DEPTH>))*(?(DEPTH)(?!))\}[^{}]*

So, i'm trying to match balancing curly braces, where some of the opening curly braces have an optional word followed by a colon. The above regex matches my example string, but if i remove a curly brace, (i.e. "unbalancing it):

    other stuff blah blah....
                    {
                        stuff stuff
                        {key:
                            stuff
                            stuff

                    } more stuff.....

...it still matches!

Can anyone tell me how to fix my regex? Thanks.

flag

3 Answers

vote up 2 vote down check

Have you checked what it is matching in the second case? Since you don't have any anchors, I think the engine starts the match just after the first '{'. From there, until the end, the string matches.

Try surrounding the pattern with \A and \z.

link|flag
Yes! Thank you much! – Matt Oct 8 '08 at 18:01
Alright, so i'm new at this site. How do i mark this answer as accepted? I click the "accept answer" link, it gives me the yellow box, then what?? I come back to this post, and it isn't updated. Sorry, too lazy to check if this is in the docs. :) – Matt Oct 8 '08 at 18:06
vote up 0 vote down

Not to be a kill joy but what you're attempting to do with a regular expression is boggling your mind because it's simply not possible. Regular expressions are a class of finite automata and do not posses enough state in which to peform recursive/nested matching. You'll need a context free grammar of sorts in order to get this working.

There are some regular expression engines which do support a notion of recursion. These are not strictly speaking regular expressions though. Can you tell us what engine you are using because it's possible it has a recursion function which will help out this scenario.

link|flag
1  
Subject line says .NET Regex. I already know the engine supports it. See blog.stevenlevithan.com/archives/balancing-groups/… – Matt Oct 8 '08 at 17:38
vote up 0 vote down

This is a must-have for working with regular expressions: Regulator

link|flag

Your Answer

Get an OpenID
or

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