Matching an optional substring in a regex - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:12:13Zhttp://stackoverflow.com/feeds/question/241285http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/241285/matching-an-optional-substring-in-a-regex4Matching an optional substring in a regexCraig Walker2008-10-27T20:32:47Z2008-10-27T21:28:32Z
<p>I'm developing an algorithm to parse a number out of a series of short-ish strings. These strings are somewhat regular, but there's a few different general forms and several exceptions. I'm trying to build a set of regexes that will handle the various forms and exceptions; I'll apply them one after another to see if I get a match. </p>
<p>One of these forms goes something like this:</p>
<pre><code>X (Y) Z
</code></pre>
<p>Where:</p>
<ul>
<li>X is a number I want to capture. </li>
<li>Z is static, pre-defined text. it's basically how I determine whether this particular form is applicable or not.</li>
<li>Y is a a string of unknown length and content, surrounded by parenthesis. </li>
</ul>
<p>Also: Y is optional; it doesn't always appear in a string with Z and X. So, I want to be able to extract the numbers from all of these strings:</p>
<ul>
<li>10 Z</li>
<li>20 (foo) Z</li>
<li>30 (bar) Z</li>
</ul>
<p>Right now, I have a regex that will capture the first one:</p>
<pre><code>([0-9]+) +Z
</code></pre>
<p>My problem is that I don't know how to construct a regex that will match a series of characters if and only if they're enclosed in parenthesis. Can this be done in a single regex?</p>
http://stackoverflow.com/questions/241285/matching-an-optional-substring-in-a-regex/241288#2412881Answer by Kip for Matching an optional substring in a regexKip2008-10-27T20:34:21Z2008-10-27T20:34:21Z<p>Try this:</p>
<pre><code>X (\(Y\))? Z
</code></pre>
http://stackoverflow.com/questions/241285/matching-an-optional-substring-in-a-regex/241292#2412923Answer by Konrad Rudolph for Matching an optional substring in a regexKonrad Rudolph2008-10-27T20:36:16Z2008-10-27T20:47:22Z<p>You can do this:</p>
<pre><code>([0-9]+) (\([^)]+\))? Z
</code></pre>
<p>This will not work with nested parens for Y, however. Nesting requires recursion which isn't strictly regular any more (but context-free). Modern regexp engines can still handle it, albeit with some difficulties (back-references).</p>
http://stackoverflow.com/questions/241285/matching-an-optional-substring-in-a-regex/241308#2413086Answer by Godeke for Matching an optional substring in a regexGodeke2008-10-27T20:39:53Z2008-10-27T21:28:32Z<pre><code>(\d+)\s+(\(.*?\))?\s?Z
</code></pre>
<p>Note the escaped parentheses, and the ? (zero or once) quantifiers. Any of the groups you don't want to capture can be (?: non-capture groups).</p>
<p>I agree about the spaces. \s is a better option there. I also changed the quantifier to insure there are digits at the beginning. As far as newlines, that would depend on context: if the file is parsed line by line it won't be a problem. Another option is to anchor the start and end of the line (add a ^ at the front and a $ at the end).</p>
http://stackoverflow.com/questions/241285/matching-an-optional-substring-in-a-regex/241337#2413370Answer by Martin Kool for Matching an optional substring in a regexMartin Kool2008-10-27T20:52:33Z2008-10-27T20:52:33Z<p>This ought to work:</p>
<pre><code>^\d+\s?(\([^\)]+\)\s?)?Z$
</code></pre>
<p>Haven't tested it though, but let me give you the breakdown, so if there are any bugs left they should be pretty straightforward to find:</p>
<p>First the beginning:</p>
<pre><code>^ = beginning of string
\d+ = one or more decimal characters
\s? = one optional whitespace
</code></pre>
<p>Then this part:</p>
<pre><code>(\([^\)]+\)\s?)?
</code></pre>
<p>Is actually:</p>
<pre><code>(.............)?
</code></pre>
<p>Which makes the following contents optional, only if it exists fully</p>
<pre><code>\([^\)]+\)\s?
\( = an opening bracket
[^\)]+ = a series of at least one character that is not a closing bracket
\) = followed by a closing bracket
\s? = followed by one optional whitespace
</code></pre>
<p>And the end is made up of</p>
<pre><code>Z$
</code></pre>
<p>Where</p>
<pre><code>Z = your constant string
$ = the end of the string
</code></pre>