Using an asterisk in a RegExp to extract data that is enclosed by a certain pattern - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:25:36Zhttp://stackoverflow.com/feeds/question/461535http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/461535/using-an-asterisk-in-a-regexp-to-extract-data-that-is-enclosed-by-a-certain-patte0Using an asterisk in a RegExp to extract data that is enclosed by a certain patternmarkus2009-01-20T14:32:11Z2009-04-03T22:19:48Z
<p>Hi.
I have an text that consists of information enclosed by a certain pattern.
The only thing I know is the pattern: "${template.start}" and ${template.end}
To keep it simple I will substitute ${template.start} and ${template.end} with "a" in the example.</p>
<p>So one entry in the text would be:</p>
<pre><code>aINFORMATIONHEREa
</code></pre>
<p>I do not know how many of these entries are concatenated in the text. So the following is correct too:</p>
<pre><code>aFOOOOOOaaASDADaaASDSDADa
</code></pre>
<p>I want to write a regular expression to extract the information enclosed by the "a"s.</p>
<p>My first attempt was to do:</p>
<pre><code>a(.*)a
</code></pre>
<p>which works as long as there is only one entry in the text. As soon as there are more than one entries it failes, because of the <code>.*</code> matching everything. So using <code>a(.*)a</code> on <code>aFOOOOOOaaASDADaaASDSDADa</code> results in only one capturing group containing everything between the first and the last character of the text which are "a":</p>
<pre><code>FOOOOOOaaASDADaaASDSDAD
</code></pre>
<p>What I want to get is something like</p>
<pre><code>captureGroup(0): aFOOOOOOaaASDADaaASDSDADa
captureGroup(1): FOOOOOO
captureGroup(2): ASDAD
captureGroup(3): ASDSDAD
</code></pre>
<p>It would be great to being able to extract each entry out of the text and from each entry the information that is enclosed between the "a"s. By the way I am using the QRegExp class of Qt4.</p>
<p>Any hints? Thanks!
Markus</p>
<p><hr /></p>
<p>Multiple variation of this question have been seen before. Various related discussions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/328387/regex-to-replace-all-n-in-a-string-but-no-those-inside-code-code-tag">http://stackoverflow.com/questions/328387/regex-to-replace-all-n-in-a-string-but-no-those-inside-code-code-tag</a></li>
<li><a href="http://stackoverflow.com/questions/191704/using-regular-expressions-how-do-i-find-a-pattern-surrounded-by-two-other-pattern">http://stackoverflow.com/questions/191704/using-regular-expressions-how-do-i-find-a-pattern-surrounded-by-two-other-pattern</a></li>
<li><a href="http://stackoverflow.com/questions/423107/use-regexp-to-match-a-parenthetical-number-then-increment-it">http://stackoverflow.com/questions/423107/use-regexp-to-match-a-parenthetical-number-then-increment-it</a></li>
<li><a href="http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double">http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double</a></li>
<li><a href="http://stackoverflow.com/questions/179779/what-regex-will-match-text-excluding-what-lies-within-html-tags">http://stackoverflow.com/questions/179779/what-regex-will-match-text-excluding-what-lies-within-html-tags</a></li>
</ul>
<p>and probably others...</p>
http://stackoverflow.com/questions/461535/using-an-asterisk-in-a-regexp-to-extract-data-that-is-enclosed-by-a-certain-patte/461548#4615485Answer by cletus for Using an asterisk in a RegExp to extract data that is enclosed by a certain patterncletus2009-01-20T14:35:35Z2009-01-20T14:35:35Z<p>Simply use non-greedy expressions, namely:</p>
<pre><code>a(.*?)a
</code></pre>
http://stackoverflow.com/questions/461535/using-an-asterisk-in-a-regexp-to-extract-data-that-is-enclosed-by-a-certain-patte/461563#4615633Answer by Fernando Miguélez for Using an asterisk in a RegExp to extract data that is enclosed by a certain patternFernando Miguélez2009-01-20T14:39:29Z2009-01-20T14:39:29Z<p>You need to match something like:</p>
<pre><code>a[^a]*a
</code></pre>
http://stackoverflow.com/questions/461535/using-an-asterisk-in-a-regexp-to-extract-data-that-is-enclosed-by-a-certain-patte/461681#4616810Answer by dmckee for Using an asterisk in a RegExp to extract data that is enclosed by a certain patterndmckee2009-01-20T15:08:36Z2009-01-20T15:19:47Z<p>You have a couple of working answers already, but I'll add a little gratuitous advice:</p>
<blockquote>
<p><strong>Using regular expressions for parsing is a road fraught with danger</strong></p>
</blockquote>
<p><strong>Edit:</strong> To be less cryptic: for all there power, flexibility and elegance, regular expression are not sufficiently expressive to describe any but the simplest grammars. Ther are adequate for the problem asked here, but are not a suitable replacement for state machine or recursive decent parsers if the input language become more complicated.</p>
<p>SO, choosing to use RE for parsing input streams is a decision that should be made with care and with an eye towards the future.</p>