Regex - match everything within parentheses, with nesting - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-12-03T00:15:32Zhttp://stackoverflow.com/feeds/question/235998http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/235998/regex-match-everything-within-parentheses-with-nesting1Regex - match everything within parentheses, with nesting [closed]Claudiu2008-10-25T06:21:29Z2008-10-25T06:30:02Z
<p>EDIT: Closed my own question: <a href="http://stackoverflow.com/questions/133601/can-regular-expressions-be-used-to-match-nested-patterns">this</a> is equivalent.</p>
<p><hr></p>
<p>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:</p>
<pre><code>I'm not sure why {although to be honest it's peculiar {as others have said} that it's strange} that I like cheese.
</code></pre>
<p>I want to return:</p>
<pre><code>{although to be honest it's peculiar {as others have said} that it's strange}
</code></pre>
<p>I have <code>({[^}]+})</code> so far, but this only works with one level of nesting:</p>
<pre><code>>>> re.findall("({[^}]+})", "Im not sure why {although its strange} that he")
['{although its strange}']
</code></pre>
<p>This works, but:</p>
<pre><code>>>> re.findall("({[^}]+})", "Im not sure why {although its {really} strange} that he")
['{although its {really}']
</code></pre>
<p>I'd want it to return:</p>
<pre><code>['{although its {really} strange}']
</code></pre>
<p>This is not specific to python, but to regular expressions in general.</p>
http://stackoverflow.com/questions/235998/regex-match-everything-within-parentheses-with-nesting/236002#2360020Answer by jeremy Ruten for Regex - match everything within parentheses, with nestingjeremy Ruten2008-10-25T06:25:59Z2008-10-25T06:25:59Z<p>I don't think regex is the right tool for this, instead you might want to find the index of the first <code>{</code> character and the last <code>}</code> character and get the substring in between them.</p>
http://stackoverflow.com/questions/235998/regex-match-everything-within-parentheses-with-nesting/236008#2360080Answer by J S for Regex - match everything within parentheses, with nestingJ S2008-10-25T06:30:02Z2008-10-25T06:30:02Z<p>You have unbalanced paretheses in your regexp, so you cannot expect it to work properly. What about using "{.*}" regexp?</p>
<p>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). </p>