Need regexp to find substring between two tokens - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T01:55:32Z http://stackoverflow.com/feeds/question/489567 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/489567/need-regexp-to-find-substring-between-two-tokens 0 Need regexp to find substring between two tokens Dr.Dredel 2009-01-28T21:56:13Z 2009-01-30T06:36:22Z <p>I suspect this has already been answered somewhere, but I can't find it, so...</p> <p>I need to extract a string from between two tokens in a larger string, in which the second token will probably appear again meaning... (pseudo code...)</p> <pre><code>myString = "A=abc;B=def_3%^123+-;C=123;" ; myB = getInnerString(myString, "B=", ";" ) ; method getInnerString(inStr, startToken, endToken){ return inStr.replace( EXPRESSION, "$1"); } </code></pre> <p>so, when I run this using expression "<code>.+B=(.+);.+</code>" I get "def_3%^123+-;C=123;" presumably because it just looks for the LAST instance of ';' in the string, rather than stopping at the first one it comes to.</p> <p>I've tried using (?=) in search of that first ';' but it gives me the same result.</p> <p>I can't seem to find a regExp reference that explains how one can specify the "NEXT" token rather than the one at the end.</p> <p>any and all help greatly appreciated.</p> <p><hr /></p> <p>Similar question on SO:</p> <ul> <li><a href="http://stackoverflow.com/questions/1237/regex-to-pull-out-a-section-a-substing-from-a-string-between-two-tags">http://stackoverflow.com/questions/1237/regex-to-pull-out-a-section-a-substing-from-a-string-between-two-tags</a></li> <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/180793/replace-patterns-that-are-inside-delimiters-using-a-regular-expression-call">http://stackoverflow.com/questions/180793/replace-patterns-that-are-inside-delimiters-using-a-regular-expression-call</a></li> <li><a href="http://stackoverflow.com/questions/299942/regex-matching-html-tags-and-extracting-text">http://stackoverflow.com/questions/299942/regex-matching-html-tags-and-extracting-text</a></li> </ul> http://stackoverflow.com/questions/489567/need-regexp-to-find-substring-between-two-tokens/489576#489576 3 Answer by Gumbo for Need regexp to find substring between two tokens Gumbo 2009-01-28T21:58:03Z 2009-01-28T21:58:03Z <p>Try this:</p> <pre><code>B=([^;]+); </code></pre> <p>This matches everything between <code>B=</code> and <code>;</code> unless it is a <code>;</code>. So it matches everything between <code>B=</code> and the first <code>;</code> thereafter.</p> http://stackoverflow.com/questions/489567/need-regexp-to-find-substring-between-two-tokens/489577#489577 5 Answer by Evan Fosmark for Need regexp to find substring between two tokens Evan Fosmark 2009-01-28T21:58:18Z 2009-01-28T21:58:18Z <p>You're using a greedy pattern by not specifying the <code>?</code> in it. Try this:</p> <pre><code>".+B=(.+?);.+" </code></pre> http://stackoverflow.com/questions/489567/need-regexp-to-find-substring-between-two-tokens/494673#494673 0 Answer by Alan Moore for Need regexp to find substring between two tokens Alan Moore 2009-01-30T06:36:22Z 2009-01-30T06:36:22Z <p>(This is a continuation of the conversation from the comments to Evan's answer.) </p> <p>Here's what happens when your (corrected) regex is applied: First, the <code>.+</code> matches the whole string. Then it backtracks, giving up most of the characters it just matched until it gets to the point where the <code>B=</code> can match. Then the <code>(.+?)</code> matches (and captures) everything it sees until the next part, the semicolon, can match. Then the final <code>.+</code> gobbles up the remaining characters.</p> <p>All you're really interested in is the "B=" and the ";" and whatever's between them, so why match the rest of the string? The only reason you have to do that is so you can replace the whole string with the contents of the capturing group. But why bother doing that if you can access contents of the group directly? Here's a demonstration (in Java, because I can't tell what language you're using):</p> <pre><code>String s = "A=abc;B=def_3%^123+-;C=123;"; Pattern p = Pattern.compile("B=(.*?);"); Matcher m = p.matcher(s); if (m.find()) { System.out.println(m.group(1)); } </code></pre> <p>Why do a 'replace' when a 'find' is so much more straightforward? Probably because your API makes it easier; that's why we do it in Java. Java has several regex-oriented convenience methods in its String class: <code>replaceAll()</code>, <code>replaceFirst()</code>, <code>split()</code>, and <code>matches()</code> (which returns <code>true</code> iff the regex matches the <em>whole</em> string), but not <code>find()</code>. And there's no convenience method for accessing capturing groups, either. We can't match the elegance of Perl one-liners like this:</p> <pre><code>print $1 if 'A=abc;B=def_3%^123+-;C=123;' =~ /B=(.*?);/; </code></pre> <p>...so we content ourselves with hacks like this:</p> <pre><code>System.out.println("A=abc;B=def_3%^123+-;C=123;" .replaceFirst(".+B=(.*?);.+", "$1")); </code></pre> <p>Just to be clear, I'm not saying not to use these hacks, or that there's anything wrong with Evan's answer--there isn't. I just think we should understand <em>why</em> we use them, and what trade-offs we're making when we do.</p>