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.
