vote up 1 vote down star

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.

flag

66% accept rate

closed as exact duplicate by Claudiu Oct 25 '08 at 6:28

2 Answers

vote up 0 vote down check

I don't think regex is the right tool for this, instead you might want to find the index of the first { character and the last } character and get the substring in between them.

link|flag
vote up 0 vote down

You have unbalanced paretheses in your regexp, so you cannot expect it to work properly. What about using "{.*}" regexp?

I think you don't understand that .* is a greedy match, i.e. it matches the longest possible string. If you would like to take only inner parentheses, you would use .*? (lazy match - shortest possible string).

link|flag

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