EDIT: Closed my own question: this is equivalent.
How do I match something completely in a set of parentheses (or any other pair of 'tags', for that matter) if there are potentially nested parentheses inside? I want to match only the outermost pair. For example, given:
I'm not sure why {although to be honest it's peculiar {as others have said} that it's strange} that I like cheese.
I want to return:
{although to be honest it's peculiar {as others have said} that it's strange}
I have ({[^}]+}) so far, but this only works with one level of nesting:
>>> re.findall("({[^}]+})", "Im not sure why {although its strange} that he")
['{although its strange}']
This works, but:
>>> re.findall("({[^}]+})", "Im not sure why {although its {really} strange} that he")
['{although its {really}']
I'd want it to return:
['{although its {really} strange}']
This is not specific to python, but to regular expressions in general.
