Overlapping matches in Regex - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:32:52Zhttp://stackoverflow.com/feeds/question/320448http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/320448/overlapping-matches-in-regex2Overlapping matches in Regexfencliff2008-11-26T11:50:44Z2008-11-27T23:10:19Z
<p>Hi,</p>
<p>I can't seem to find an answer to this problem, and I'm wondering if one exists. Simplified example:</p>
<p>Consider a string "nnnn", where I want to find all matches of "nn" - but also those that overlap with each other. So the regex would provide the following 3 matches:</p>
<ol>
<li><b>nn</b>nn</li>
<li>n<b>nn</b>n</li>
<li>nn<b>nn</b></li>
</ol>
<p>I realize this is not exactly what regexes are meant for, but walking the string and parsing this manually seems like an awful lot of code, considering that in reality the matches would have to be done using a pattern, not a literal string.</p>
http://stackoverflow.com/questions/320448/overlapping-matches-in-regex/320470#320470-1Answer by PhiLho for Overlapping matches in RegexPhiLho2008-11-26T11:57:56Z2008-11-27T01:33:10Z<p>AFAIK, there is no pure regex way to do that at once (ie. returning the three captures you request without loop).</p>
<p>Now, you can find a pattern once, and loop on the search starting with offset (found position + 1). Should combine regex use with simple code.</p>
<p>[EDIT] Great, I am downvoted when I basically said what Jan shown...<br />
[EDIT 2] To be clear: Jan's answer is better. Not more precise, but certainly more detailed, it deserves to be chosen. I just don't understand why mine is downvoted, since I still see nothing incorrect in it. Not a big deal, just annoying.</p>
http://stackoverflow.com/questions/320448/overlapping-matches-in-regex/320478#3204784Answer by VonC for Overlapping matches in RegexVonC2008-11-26T12:01:56Z2008-11-26T14:22:07Z<p>A possible solution could be to use a <a href="http://www.regular-expressions.info/lookaround.html" rel="nofollow">positive look behind</a>:</p>
<pre><code>(?<=n)n
</code></pre>
<p>It would give you the end position of:</p>
<ol>
<li><em>n</em><strong>n</strong>nn
</li>
<li>n*n*<strong>n</strong>n
</li>
<li>nn*n*<strong>n</strong></li>
</ol>
<p><hr /></p>
<p>As mentionned by <a href="http://stackoverflow.com/users/11917/timothy-khouri">Timothy Khouri</a>, a <strong>positive lookahead</strong> is more intuitive</p>
<p>I would prefer to his proposition <code>(?=nn)n</code> the simpler form:</p>
<pre><code>(n)(?=(n))
</code></pre>
<p>That would reference the <strong>first position</strong> of the strings you want <strong>and would capture the second n in group(2)</strong>.</p>
<p>That is so because:</p>
<ul>
<li>Any valid regular expression can be used inside the lookahead. </li>
<li>If it contains capturing parentheses, the <strong>backreferences will be saved</strong>.</li>
</ul>
<p>So group(1) and group(2) will capture whatever 'n' represents (even if it is a complicated regex).</p>
http://stackoverflow.com/questions/320448/overlapping-matches-in-regex/321391#3213914Answer by Jan Goyvaerts for Overlapping matches in RegexJan Goyvaerts2008-11-26T16:52:39Z2008-11-26T16:52:39Z<p>Using a lookahead with a capturing group works, at the expense of making your regex slower and more complicated. An alternative solution is to tell the Regex.Match() method where the next match attempt should begin. Try this:</p>
<pre><code>Regex regexObj = new Regex("nn");
Match matchObj = regexObj.Match(subjectString);
while (matchObj.Success) {
matchObj = regexObj.Match(subjectString, matchObj.Index + 1);
}
</code></pre>