User Alan Moore - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T11:18:58Z http://stackoverflow.com/feeds/user/20938 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1930988/regular-expression-string-omit-question/1931409#1931409 1 Answer by Alan Moore for Regular Expression String Omit Question Alan Moore 2009-12-19T00:11:44Z 2009-12-19T00:11:44Z <p>Patrick brought up some good points about escaped quotes and single-quoted strings, but it's even worse than that: what about comments? Comments can contain quotes (double or single), and string literals can contain things that look like comment delimiters. And don't forget regexes themselves: regex literals can contain any of those things, and regexes can also be written in the form of string literals for use with the RegExp constructor.</p> <p>If you know in advance that such syntactic overlaps won't happen (or will be very limited), you <em>might</em> be able to do what you want, but it will probably be very ugly. But what you really need is a full-blown parser, or a completely different approach to the underlying problem. I know it sounds like a very simple thing to do, but it's just a really bad fit for the way regexes work.</p> http://stackoverflow.com/questions/1926001/why-group-value-always-the-last-matched-group-string/1926516#1926516 2 Answer by Alan Moore for Why Group.Value always the last matched group string? Alan Moore 2009-12-18T05:40:33Z 2009-12-18T10:01:18Z <p>The primary reason is historical: regexes have always worked that way, going back to Perl and beyond. But it's not really bad design. Usually, if you want every match like that, you just leave off the outermost quantifier (<code>+</code> in ths case) and use the <code>Matches()</code> method instead of <code>Match()</code>. Every regex-enabled language provides a way to do that: in Perl or JavaScript you do the match in <code>/g</code> mode; in Ruby you use the <code>scan</code> method; in Java you call <code>find()</code> repeatedly until it returns <code>false</code>. Similarly, if you're doing a replace operation, you can plug the captured substrings back in as you go with placeholders (<code>$1</code>, <code>$2</code> or <code>\1</code>, <code>\2</code>, depending on the language). </p> <p>On the other hand, I know of no other Perl 5-derived regex flavor that provides the ability to retrieve intermediate capture-group matches like .NET does with its CaptureCollections. And I'm not surprised: it's actually very seldom that you really need to capture all the matches in one go like that. And think of all the storage and/or processing power it can take to keep track of all those intermediate matches. It is a nice feature though.</p> http://stackoverflow.com/questions/1915013/replacing-variable-numbers-of-items-regex/1915356#1915356 1 Answer by Alan Moore for Replacing variable numbers of items... regex? Alan Moore 2009-12-16T15:27:26Z 2009-12-16T15:27:26Z <p>The easiest way to do this kind of thing is with something like PHP's <code>preg_replace_callback</code> or .NET's <code>MatchEvaluator</code> delegates. Java doesn't have anything like that built in, but it does expose the lower-level API that lets you implement it yourself. Here's one way to do it:</p> <pre><code>import java.util.regex.*; public class Test { static String sepsup(String orig) { Pattern p = Pattern.compile("(\\{su[bp] )(\\d+)\\}"); Matcher m = p.matcher(orig); StringBuffer sb = new StringBuffer(); while (m.find()) { m.appendReplacement(sb, ""); for (char ch : m.group(2).toCharArray()) { sb.append(m.group(1)).append(ch).append("}"); } } m.appendTail(sb); return sb.toString(); } public static void main (String[] args) { String s = "{sup 19}F({sup 3}He,t){sub 19}Ne(p){sup 18}F"; System.out.println(s); System.out.println(sepsup(s)); } } </code></pre> <p>result:</p> <pre><code>{sup 19}F({sup 3}He,t){sub 19}Ne(p){sup 18}F {sup 1}{sup 9}F({sup 3}He,t){sub 1}{sub 9}Ne(p){sup 1}{sup 8}F </code></pre> <p>If you wanted, you could go ahead and generate the superscript and subscript characters and insert those instead.</p> http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914001#1914001 4 Answer by Alan Moore for Number grouping using regexps Alan Moore 2009-12-16T11:15:08Z 2009-12-16T11:25:20Z <p>Here's a version that will work in JavaScript:</p> <pre><code>return n.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1 "); </code></pre> http://stackoverflow.com/questions/1898905/php-recursive-regular-expressions/1899579#1899579 3 Answer by Alan Moore for PHP - recursive regular expressions Alan Moore 2009-12-14T08:09:12Z 2009-12-14T08:09:12Z <p>Try this:</p> <pre><code>'/(?s)\{\|(?:(?:(?!\{\||\|\}).)++|(?R))*\|\}/' </code></pre> <p>In your original regex you use the character class <code>[^{}]</code> to match anything except a delimiter. That's fine when the delimiters are only one character, but yours are two characters. To not-match a multi-character sequence you need something this: </p> <pre><code>(?:(?!\{\||\|\}).)++ </code></pre> <p>The dot matches any character (including newlines, thank to the <code>(?s)</code>), but only after the lookahead has determined that it's not part of a <code>{|</code> or <code>|}</code> sequence. I also dropped your atomic group (<code>(?&gt;...)</code>) and replaced it with a possessive quantifier (<code>++</code>) to reduce clutter. But you should definitely use one or the other in that part of the regex to prevent <a href="http://www.regular-expressions.info/catastrophic.html" rel="nofollow">catastrophic backtracking</a>.</p> http://stackoverflow.com/questions/1886175/pattern-error-while-using-regex-in-java/1892675#1892675 0 Answer by Alan Moore for Pattern Error while using RegEx in Java Alan Moore 2009-12-12T07:29:59Z 2009-12-13T19:36:34Z <p>The exception isn't being caused by your regex, it's because you're using the API incorrectly. You're supposed to check the return value of the <code>find()</code> method before you call <code>group()</code> -- that's how you know the match succeeded. </p> <p>EDIT: Here's what's happening: when you get to the final chunk of text, the regex originally matches all the way to the end. But <code>\b</code> can't match at that position because the last character is a period (or full stop), not a word character. So it backtracks one position, and then <code>\b</code> can match between the final letter and the period. </p> <p>Then it tries to match another chunk because <code>mailBody.trim().length()</code> is still greater than zero. But this time there are no word characters at all, so the match attempt fails and <code>m.find()</code> returns <code>false</code>. But you don't check the return value, you just go ahead and call <code>m.group(0)</code>, which correctly throws an exception. You should be using <code>m.find()</code> as the <code>while</code> condition, not that business with the string length.</p> <p>In fact, you're doing a lot more work than you need to; if you use the API correctly you can reduce your code to one line:</p> <pre><code>mailBody = mailBody.replaceAll( "\\G(\\w{125}|.{1,123}(?&lt;=\\w\\b)[.,!?;:/\"-]*)\\s*", "$1\n" ).trim(); </code></pre> <p>The regex isn't perfect--I don't think that's possible--but it might do well enough.</p> http://stackoverflow.com/questions/1894624/is-regex-in-java-anchored-by-default-with-both-a-and-character/1895216#1895216 0 Answer by Alan Moore for Is regex in Java anchored by default with both a ^ and $ character? Alan Moore 2009-12-13T00:46:18Z 2009-12-13T06:02:39Z <p>Yes, <code>matches()</code> always acts as if the regex were anchored at both ends. To get the traditional behavior, which is to match any substring of the target, you have to use <code>find()</code> (as others have already pointed out). Very few regex tools offer anything equivalent to Java's <code>matches()</code> methods, so your confusion is justified. The only other one I can think of offhand is the <a href="http://www.regular-expressions.info/xml.html" rel="nofollow">XML Schema</a> flavor.</p> http://stackoverflow.com/questions/1870051/how-do-i-match-non-ascii-characters-with-regexkitlite/1871144#1871144 0 Answer by Alan Moore for How do I match non-ASCII characters with RegexKitLite? Alan Moore 2009-12-09T01:49:25Z 2009-12-10T02:51:24Z <p>Looks like an encoding problem to me. Either you're saving the source code in an encoding that can't handle that character (like ASCII), or the compiler is using the wrong encoding to read the source files. Going back to the original regex, try creating the subject string like this:</p> <pre><code>subjectString = @"define_a\xC3\xB1adir"; </code></pre> <p>or this:</p> <pre><code>subjectString = @"define_a\u00F1adir"; </code></pre> <p>If that works, check the encoding of your source code files and make sure it's the same encoding the compiler expects. </p> <p>EDIT: I've never worked with the iPhone technology stack, but according to <a href="http://developer.apple.com/mac/library/documentation/cocoa/Conceptual/Strings/Articles/FormatStrings.html" rel="nofollow">this doc</a> you should be using the <code>stringWithUTF8String</code> method to create the NSString, not the <code>@""</code> literal syntax. In fact, it says you should never use non-ASCII characters (that is, anything not in the range <code>0x00..0x7F</code>) in your code; that way you never have to worry about the source file's encoding. That's good advice no matter what language or toolset you're using.</p> http://stackoverflow.com/questions/1843459/javascript-the-good-parts-why-is-lookahead-not-good/1844226#1844226 5 Answer by Alan Moore for Javascript: The Good Parts; why is lookahead not good? Alan Moore 2009-12-04T01:09:00Z 2009-12-04T01:09:00Z <p>Maybe it's because of Internet Explorer's <a href="http://blog.stevenlevithan.com/archives/regex-lookahead-bug" rel="nofollow">perpetually buggy implementation of lookaheads</a>. For anyone authoring a book about JavaScript, any feature that doesn't work in IE might as well not exist.</p> http://stackoverflow.com/questions/869809/combine-regexp/870506#870506 3 Answer by Alan Moore for Combine Regexp Alan Moore 2009-05-15T19:46:10Z 2009-12-02T06:07:02Z <p>Will the conditions be ORed or ANDed together?</p> <pre>Starts with: abc Ends with: xyz Contains: 123 Doesn't contain: 456</pre> <p>The OR version is fairly simple; as you said, it's mostly a matter of inserting pipes between individual conditions. The regex simply stops looking for a match as soon as one of the alternatives matches.</p> <pre><code>/^abc|xyz$|123|^(?:(?!456).)*$/ </code></pre> <p>That fourth alternative may look bizarre, but that's how you express "doesn't contain" in a regex. By the way, the order of the alternatives doesn't matter; this is effectively the same regex:</p> <pre><code>/xyz$|^(?:(?!456).)*$|123|^abc/ </code></pre> <p>The AND version is more complicated. After each individual regex matches, the match position has to be reset to zero so the next regex has access to the whole input. That means all of the conditions have to be expressed as lookaheads (technically, one of them doesn't have to be a lookahead, I think it expresses the intent more clearly this way). A final <code>.*$</code> consummates the match.</p> <pre><code>/^(?=^abc)(?=.*xyz$)(?=.*123)(?=^(?:(?!456).)*$).*$/ </code></pre> <p>And then there's the possibility of combined AND and OR conditions--that's where the real fun starts. :D</p> http://stackoverflow.com/questions/1812891/java-escape-string-to-prevent-sql-injection/1823512#1823512 0 Answer by Alan Moore for Java - escape string to prevent SQL injection Alan Moore 2009-12-01T01:35:35Z 2009-12-01T01:35:35Z <p>(This is in answer to the OP's comment under the original question; I agree completely that PreparedStatement is the tool for this job, not regexes.)</p> <p>When you say <code>\n</code>, do you mean the sequence <code>\</code>+<code>n</code> or an actual linefeed character? If it's the latter, the task is pretty straightforward:</p> <pre><code>s = s.replaceAll("['\"\\\\]", "\\\\$0"); </code></pre> <p>To match one backslash in the input, you put four of them in the regex string. To put one backslash in the output, you put four of them in the replacement string. This is assuming you're creating the regexes and replacements in the form of Java String literals. If you create them any other way (e.g., by reading them from a file), you don't have to do all that double-escaping.</p> <p>If you have a linefeed character in the input and you want to replace it with an escape sequence, you can make a second pass over the input with this:</p> <pre><code>s = s.replaceAll("\n", "\\\\n"); </code></pre> <p>Or maybe you want two backslashes (I'm not too clear on that):</p> <pre><code>s = s.replaceAll("\n", "\\\\\\\\n"); </code></pre> http://stackoverflow.com/questions/1734466/why-is-this-regex-being-greedy/1735379#1735379 3 Answer by Alan Moore for Why is this regex being greedy? Alan Moore 2009-11-14T19:46:30Z 2009-11-14T19:46:30Z <p>The way a reluctant (non-greedy) quantifier works is, once it starts to match, it stops at the first opportunity. What you're trying to do is match the minimum amount of text that meets your criteria, which isn't the same thing; you still have to make sure it doesn't <em>start</em> matching before you want it to. As others have suggested, you can do that by replacing the <code>.+?</code> in your regex with something that doesn't match quotes, like <code>[^""]+</code>.</p> <p>But that still leaves you with a performance problem. In your example, the regex starts matching when it sees the quote in <code>center"&gt;</code>; when it reaches the quote at <code>src="</code> (assuming you've changed the <code>.+?</code> to <code>[^""]+</code>) it will abort that match attempt an move on. The next attempt, starting at the quote in <code>src="</code> will succeed. So you're getting the right result now, but you're still wasting a lot of time on that first, failed match attempt.</p> <p>The key to writing fast regexes is to make sure that, if a match attempt is going to fail, it fails as quickly as possible. For example, I think it's safe to assume you don't want any angle brackets between the <code>"</code> and <code>/thumbs/</code>, so add them to the set of characters you don't want to match: <code>[^""&lt;&gt;]+</code>. Now, any match attempt starting at the quote in <code>center"&gt;</code> it will be aborted at the very next position.</p> <p>There are other things you can do to further optimize the regex, involving atomic groups and negative lookaheads, but this will probably be as fast as you need:</p> <pre><code>@"""([^""&lt;&gt;]+/thumbs/[^""&lt;&gt;]+)""" </code></pre> http://stackoverflow.com/questions/1728522/regex-check-previous-line/1732799#1732799 3 Answer by Alan Moore for Regex check previous line Alan Moore 2009-11-14T00:42:55Z 2009-11-14T00:42:55Z <pre><code>(?m)^(?&lt;!^\*+\r?\n).+ </code></pre> <p><code>(?m)</code> turns on multiline mode so <code>^</code> can match the beginning of a line. The lookbehind checks the previous line; if it succeeds (that is, it <em>doesn't</em> see a line of asterisks), <code>.+</code> consumes the current line.</p> http://stackoverflow.com/questions/1722453/need-to-prevent-php-regex-segfault/1723353#1723353 1 Answer by Alan Moore for Need to prevent PHP regex segfault Alan Moore 2009-11-12T16:06:54Z 2009-11-12T17:14:56Z <p>The first thing I would try is making all the quantifiers possessive and all the groups atomic:</p> <pre><code>"@&lt;/?+(?![bisa]\b)(?!em\b)[^&gt;]*+&gt; (?&gt;[^&lt;]++|&lt;/?+(?&gt;(?&gt;[bisau]|em|strong|sup)\b)[^&gt;]*+&gt;)*+ [?!.]+ @ix" </code></pre> <p>I think Jeremy's right: it's not backtracking <em>per se</em> that's killing you, it's all the state info the regex engine has to save to make backtracking possible. The regex seems to be constructed in such a way that if it ever has to backtrack, it's going to fail anyway. So use possessive quantifiers and atomic groups and don't bother saving all that useless info.</p> <p>EDIT: to allow for the sentence-ending punctuation, you could add another alternative to the second line:</p> <pre><code>(?&gt;[^&lt;?!.]++|(?![^?!.\s&lt;]++&lt;)[?!.]++|&lt;/?+(?&gt;(?&gt;[bisau]|em|strong|sup)\b)[^&gt;]*+&gt;)*+ </code></pre> <p>The addition matches one or more of said characters, unless they're the last non-whitespace characters in the element.</p> http://stackoverflow.com/questions/1720191/java-util-regex-importance-of-pattern-compile/1721778#1721778 3 Answer by Alan Moore for java.util.regex - importance of Pattern.compile()? Alan Moore 2009-11-12T12:14:24Z 2009-11-12T13:46:03Z <p>The <code>compile()</code> method is always called at some point; it's the only way to create a Pattern object. So the question is really, why should you call it <strong>explicitly</strong>? One reason is that you need a reference to the Matcher object so you can use its methods, like <code>group(int)</code> to retrieve the contents of capturing groups. The only way to get hold of the Matcher object is through the Pattern object's <code>matcher()</code> method, and the only to get hold of the Pattern object is through the <code>compile()</code> method. Then there's the <code>find()</code> method which, unlike <code>matches()</code>, is not duplicated in the String or Pattern classes. </p> <p>The other reason is to avoid creating the same Pattern object over and over. Every time you use one of the regex-powered methods in String (or the static <code>matches()</code> method in Pattern), it creates a new Pattern and a new Matcher. So this code snippet:</p> <pre><code>for (String s : myStringList) { if ( s.matches("\\d+") ) { doSomething(); } } </code></pre> <p>...is exactly equivalent to this:</p> <pre><code>for (String s : myStringList) { if ( Pattern.compile("\\d+").matcher(s).matches() ) { doSomething(); } } </code></pre> <p>Obviously, that's doing a lot of unnecessary work. In fact, it can easily take longer to compile the regex and instantiate the Pattern object, than it does to perform an actual match. So it usually makes sense to pull that step out of the loop. You can create the Matcher ahead of time as well, though they're not nearly so expensive:</p> <pre><code>Pattern p = Pattern.compile("\\d+"); Matcher m = p.matcher(""); for (String s : myStringList) { if ( m.reset(s).matches() ) { doSomething(); } } </code></pre> <p>If you're familiar with .NET regexes, you may be wondering if Java's <code>compile()</code> method is related to .NET's <code>RegexOptions.Compiled</code> modifier; the answer is no. In .NET you don't usually have to worry about redundant object creation because the system automatically caches a certain number of Regex objects, whether you use a constructor or one of the static convenience methods like <code>Regex.Matches(s, @"\d+")</code>. If you specify the <code>Compiled</code> option:</p> <pre><code>Regex r = new Regex(@"\d+", RegexOptions.Compiled); </code></pre> <p>...it compiles the regex directly to CIL byte code, allowing it to perform much faster, but at a significant cost in up-front processing and memory use--think of it as steroids for regexes. Java has no equivalent for .NET's <code>Compiled</code> option. There's no difference between a Pattern that's created behind the scenes by <code>String#matches(String)</code> and one you create explicitly with <code>Pattern#compile(String)</code>.</p> http://stackoverflow.com/questions/1712696/boostregex-dotall-flag/1713128#1713128 1 Answer by Alan Moore for Boost::Regex DOTALL flag Alan Moore 2009-11-11T05:00:45Z 2009-11-11T05:00:45Z <p>I think what you're looking for is the <code>mod_s</code> <a href="http://www.boost.org/doc/libs/1%5F33%5F1/libs/regex/doc/syntax%5Foption%5Ftype.html" rel="nofollow">syntax_option_type</a>. You can also use the inline modifier, <code>(?s)</code>.</p> http://stackoverflow.com/questions/275768/is-there-a-way-to-split-strings-with-string-split-and-include-the-delimiters/279337#279337 1 Answer by Alan Moore for Is there a way to split strings with String.split() and include the delimiters? Alan Moore 2008-11-10T22:04:01Z 2009-11-10T17:38:03Z <p>I got here late, but returning to the original question, why not just use lookarounds?</p> <pre><code>Pattern p = Pattern.compile("(?&lt;=\\w)(?=\\W)|(?&lt;=\\W)(?=\\w)"); System.out.println(Arrays.toString(p.split("'ab','cd','eg'"))); System.out.println(Arrays.toString(p.split("boo:and:foo"))); </code></pre> <p>output:</p> <pre><code>[', ab, ',', cd, ',', eg, '] [boo, :, and, :, foo] </code></pre> <p>EDIT: What you see above is what appears on the command line when I run that code, but I now see that it's a bit confusing. It's difficult to keep track of which commas are part of the result and which were added by <code>Arrays.toString()</code>. SO's syntax highlighting isn't helping either. In hopes of getting the highlighting to work <em>with</em> me instead of against me, here's how those arrays would look it I were declaring them in source code:</p> <pre><code>{ "'", "ab", "','", "cd", "','", "eg", "'" } { "boo", ":", "and", ":", "foo" } </code></pre> <p>I hope that's easier to read. Thanks for the heads-up, @finnw.</p> http://stackoverflow.com/questions/1689038/how-to-match-second-a-tag-in-this-string/1692525#1692525 0 Answer by Alan Moore for How to match second <a> tag in this string. Alan Moore 2009-11-07T09:18:22Z 2009-11-07T09:18:22Z <p>If you know the exact text of the element, and you know it's the last element of its kind in the fragment, you have more than enough information to match it with a regex. I suspect you're using a regex like this:</p> <pre><code>/&lt;a\s+.*&gt;Announcements&lt;\/a&gt;/s </code></pre> <p>...and the <code>.*</code> is matching everything between the <code>&lt;a </code> of the first anchor tag and the <code>&gt;Announcements&lt;/a&gt;</code> of the second one. Switching to a non-greedy quantifier:</p> <pre><code>/&lt;a\s+.*?&gt;Announcements&lt;\/a&gt;/s </code></pre> <p>...doesn't help; a reluctant quantifier <em>stops</em> matching as soon as possible, but the problem here is that it <em>starts</em> matching too soon. You need to replace the <code>.*</code> with something more specific, something that can only match whatever comes between the opening <code>&lt;a </code> and closing <code>&gt;</code> of a single tag:</p> <pre><code>/&lt;a\s+[^&lt;&gt;]+&gt;Announcements&lt;\/a&gt;/ </code></pre> <p>Now, when it reaches the end of the first <code>&lt;a&gt;</code> tag and doesn't see <code>Announcements&lt;/a&gt;</code> it will abort that match attempt, move along and start fresh at the second <code>&lt;a&gt;</code> tag.</p> http://stackoverflow.com/questions/1677497/guessing-the-encoding-of-text-represented-as-byte-in-java/1680348#1680348 2 Answer by Alan Moore for Guessing the encoding of text represented as byte[] in Java Alan Moore 2009-11-05T12:46:35Z 2009-11-05T12:46:35Z <p>Here's my favorite: <a href="http://glaforge.free.fr/wiki/index.php?wiki=GuessEncoding" rel="nofollow">http://glaforge.free.fr/wiki/index.php?wiki=GuessEncoding</a></p> <p>It works like this:</p> <ul> <li>If there's a UTF-8 or UTF-16 BOM, return that encoding.</li> <li>If none of the bytes have the high-order bit set, return ASCII (or you can force it to return a default 8-bit encoding instead).</li> <li>If there are bytes with the high bit set but they're arranged in the correct patterns for UTF-8, return UTF-8.</li> <li>Otherwise, return the platform default encoding (e.g., windows-1252 on an English-locale Windows system).</li> </ul> <p>It may sound overly simplistic, but in my day-to-day work it's well over 90% accurate.</p> http://stackoverflow.com/questions/1673776/preventing-duplicate-matches-in-regex/1678620#1678620 1 Answer by Alan Moore for Preventing duplicate matches in RegEx Alan Moore 2009-11-05T05:59:33Z 2009-11-05T05:59:33Z <p>Here's something you could use for a pure regex solution:</p> <pre><code>Regex r = new Regex(@"(\{[0-9]+\}|\[[^\[\]]+\])(?&lt;!\1.*\1)", RegexOptions.Singleline); </code></pre> <p>But for the sake of both efficiency and maintainability, you're probably better off with a mixed solution like the one you posted.</p> http://stackoverflow.com/questions/1667237/regexp-match-any-uppercase-characters-except-a-particular-string/1668039#1668039 0 Answer by Alan Moore for Regexp match any uppercase characters except a particular string Alan Moore 2009-11-03T15:28:16Z 2009-11-03T15:28:16Z <p>Try this:</p> <pre><code>^(?:[^A-Z/]|A_|/(?!\*))*+[A-Z] </code></pre> <p>This will work in any flavor that supports possessive quantifiers, e.g. PowerGrep, Java and PHP. The .NET flavor doesn't, but it does support atomic groups:</p> <pre><code>^(?&gt;(?:[^A-Z/]|A_|/(?!\*))*)[A-Z] </code></pre> <p>If neither of those features is available, you can use another lookahead to prevent it matching the <code>A_</code> on the rebound:</p> <pre><code>^(?:[^A-Z/]|A_|/(?!\*))*(?!A_)[A-Z] </code></pre> http://stackoverflow.com/questions/1657093/regular-expression-opening-and-closing-characters/1657636#1657636 5 Answer by Alan Moore for Regular expression opening and closing characters Alan Moore 2009-11-01T16:46:55Z 2009-11-01T16:46:55Z <p>This varies enormously from one regex flavor to the next. For example, JavaScript only lets you use the forward-slash (or solidus) as a delimiter for regex literals, but in Perl you can use just about any punctuation character--including, in more recent versions, non-ASCII characters like <code>«</code> and <code>»</code>. When you use characters that come in balanced pairs like braces, parentheses, or the double-arrow quotes above, they have to be properly balanced:</p> <pre><code>m«\d+» s{foo}{bar} </code></pre> <p>Ruby also lets you choose different delimiters if you use the <code>%r</code> prefix, but I don't know if that extends to the balanced delimiters or non-ASCII characters. Many languages don't support regex literals at all; you just write the regexes as string literals, for example:</p> <pre><code>r'\d+' // Python @"\d+" // C# "\\d+" // Java </code></pre> <p>Note the double backslash in the Java version. That's necessary because the string gets processed twice: once by the Java compiler and once by the <code>compile()</code> method of the Pattern class. Most other languages provide a "raw" or "verbatim" form of string literal that all but eliminates such backslash-itis.</p> <p>And then there's PHP. Its <code>preg</code> regex functions are built on top of the PCRE library, which closely imitates Perl's regexes, including the wide variety of delimiters. However, PHP itself doesn't support regex literals, so you have to write them as if they were regex literals embedded in string literals, like so:</p> <pre><code>'/\d+/g' // match modifiers go after the slash but inside the quotes "{\\d+}" // double-quotes may or may not require double backslashes </code></pre> <p>Finally, note that even those languages which do support regex literals don't usually offer anything like Perl's <code>s/…/…/</code> construct. The closest equivalent is a function call that takes a regex literal as the first argument and a string literal as the second, like so:</p> <pre><code>s = s.replace(/foo/i, 'bar') // JavaScript s.gsub!(/foo/i, "bar") // Ruby </code></pre> http://stackoverflow.com/questions/1652976/looking-for-a-regex-that-match-all-words-except-the-ones-inside-brackets/1653382#1653382 1 Answer by Alan Moore for Looking for a regex that match all words, except the ones [inside brackets] Alan Moore 2009-10-31T04:13:33Z 2009-10-31T04:13:33Z <p>Which Ruby version are you using? If it's 1.9 or later, this should do what you want:</p> <pre><code>/(?&lt;![\[a-z0-9-])[a-z0-9]+(-[a-z0-9]+)*(?![\]a-z0-9-])/i </code></pre> http://stackoverflow.com/questions/1648537/how-to-split-a-string-by-commas-positioned-outside-of-parenthesis/1648745#1648745 1 Answer by Alan Moore for How to split a string by commas positioned outside of parenthesis? Alan Moore 2009-10-30T09:13:23Z 2009-10-30T09:13:23Z <pre><code>s = re.split(r',\s*(?=[^)]*(?:\(|$))', x) </code></pre> <p>The lookahead matches everything up to the next open-parenthesis or to the end of the string, <strong>iff</strong> there's no close-parenthesis in between. That ensures that the comma is not inside a set of parentheses.</p> http://stackoverflow.com/questions/1633984/extracting-all-matches-of-a-nested-regular-expression-in-python/1634442#1634442 1 Answer by Alan Moore for Extracting ALL matches of a nested regular expression in python Alan Moore 2009-10-28T00:10:03Z 2009-10-28T00:10:03Z <p>Here's a solution that splits on any whitespace that isn't inside a pair of quotation marks:</p> <pre><code>re.split('\s+(?=[^"]*(?:"[^"]*"[^"]*)*$)', target) </code></pre> <p>The lookahead succeeds only if there's an even number of quotation marks ahead of the just-matched whitespace. If quoted sections in your text can contain escaped quotes, you may need a more complicated regex, depending on how the escaping is done.</p> http://stackoverflow.com/questions/1605052/regex-to-remove-carriage-returns-between-p-tags/1605655#1605655 1 Answer by Alan Moore for RegEx to remove carriage returns between <p> tags Alan Moore 2009-10-22T08:03:21Z 2009-10-22T08:03:21Z <pre><code>[\r\n]+(?=(?:[^&lt;]+|&lt;(?!/?p\b))*&lt;/p&gt;) </code></pre> <p>The first part matches one or more of any kind of line separator (<code>\n</code>, <code>\r\n</code>, or <code>\r</code>). The rest is a lookahead that attempts to match everything up to the next closing <code>&lt;/p&gt;</code> tag, but if it finds an opening <code>&lt;p&gt;</code> tag first, the match fails.</p> <p>Note that this regex can be fooled very easily, for example by SGML comments, <code>&lt;script&gt;</code> elements, or plain old malformed HTML. Also, I'm assuming your regex flavor supports positive and negative lookaheads. That's a pretty safe assumption these days, but if the regex doesn't work for you, we'll need to know exactly which language or tool you're using.</p> http://stackoverflow.com/questions/141241/does-java-have-a-using-clause/142584#142584 4 Answer by Alan Moore for Does java have a using clause? Alan Moore 2008-09-27T00:17:06Z 2009-10-15T18:20:53Z <p>This is being talked about for Java 7: <a href="http://tech.puredanger.com/java7/#resourceblock" rel="nofollow">Automatic Resource Management</a></p> http://stackoverflow.com/questions/1536915/regex-look-behind-without-obvious-maximum-length-in-java/1538826#1538826 3 Answer by Alan Moore for Regex look-behind without obvious maximum length in Java Alan Moore 2009-10-08T16:10:40Z 2009-10-08T16:10:40Z <p>It's a bug: <a href="http://bugs.sun.com/view_bug.do?bug_id=6695369" rel="nofollow">http://bugs.sun.com/view_bug.do?bug_id=6695369</a></p> <p><code>Pattern.compile()</code> is always supposed to throw an exception if it can't determine the maximum possible length of a lookbehind match.</p> http://stackoverflow.com/questions/1491555/help-with-a-tag-removal-regex/1492368#1492368 1 Answer by Alan Moore for help with a tag removal regex Alan Moore 2009-09-29T12:57:00Z 2009-09-29T12:57:00Z <p>I think this is the regex you're looking for:</p> <pre><code>string regex = @"\[" + tag + @":[^\]+]\]"; </code></pre> <p>Also, you don't need to do a separate check to see if there are tags of that type. Just do a regex replace; if there are no matches, the original string is returned.</p> <pre><code>public static string RemoveTagWithKey(string message, string tagKey) { string regex = @"\[" + tag + @":[^\]+]\]"; return Regex.Replace(message, regex, string.Empty); } </code></pre> <p>You seem to be writing an extension method, but I wrote this as a static utility method to keep things simple.</p> http://stackoverflow.com/questions/1466959/string-replaceall-vs-matcher-replaceall-performance-differences/1467195#1467195 0 Answer by Alan Moore for String replaceAll() vs. Matcher replaceAll() (Performance differences) Alan Moore 2009-09-23T16:35:53Z 2009-09-23T16:35:53Z <p>The difference is that String.replaceAll() compiles the regex each time it's called. There's no equivalent for .NET's static Regex.Replace() method, which automatically caches the compiled regex. Usually, replaceAll() is something you do only once, but if you're going to be calling it repeatedly with the same regex, especially in a loop, you should create a Pattern object and use the Matcher method.</p> <p>You can create the Matcher ahead of time, too, and use its reset() method to retarget it for each use:</p> <pre><code>Matcher m = Pattern.compile(regex).matcher(""); for (String s : targets) { System.out.println(m.reset(s).replaceAll(repl)); } </code></pre> <p>The performance benefit of reusing the Matcher, of course, is nowhere as great as that of reusing the Pattern.</p> http://stackoverflow.com/questions/1936388/what-is-a-regular-expression-for-parsing-out-individual-sentences Comment by Alan Moore on What is a regular expression for parsing out individual sentences? Alan Moore 2009-12-20T18:05:50Z 2009-12-20T18:05:50Z @Luke: It looked like you wanted a visible line break between &quot;cause&quot; and &quot;sentence&quot; in your sample text, but it wasn't showing up. I forced it to show by inserting two spaces before the linefeed. That is how you wanted it look, isn't it? http://stackoverflow.com/questions/1931657/regex-error-when-handling-with-tags Comment by Alan Moore on Regex error when handling with tags Alan Moore 2009-12-19T21:37:28Z 2009-12-19T21:37:28Z Which programming language are you working with? http://stackoverflow.com/questions/1097901/regular-expression-split-string-by-capital-letter-but-ignore-tla/1097919#1097919 Comment by Alan Moore on Regular expression, split string by capital letter but ignore TLA Alan Moore 2009-12-19T10:43:45Z 2009-12-19T10:43:45Z It also inserts a space before the &quot;A&quot; in &quot;BornInTheUSA&quot;. http://stackoverflow.com/questions/1097901/regular-expression-split-string-by-capital-letter-but-ignore-tla/1098039#1098039 Comment by Alan Moore on Regular expression, split string by capital letter but ignore TLA Alan Moore 2009-12-19T05:18:40Z 2009-12-19T05:18:40Z <code>([A-Z])(?&lt;=[a-z]\1|[A-Za-z]\1(?=[a-z]))</code> doesn't add the space at the beginning because it can never match the first letter. :) http://stackoverflow.com/questions/1792836/regular-expression-back-reference-or-alternate-construct/1924015#1924015 Comment by Alan Moore on Regular Expression, Back reference or alternate construct... Alan Moore 2009-12-18T07:43:07Z 2009-12-18T07:43:07Z You might have gotten better results if you had said what you were trying to do in your question's title. http://stackoverflow.com/questions/1926683/a-positive-number-from-1-to-231-1-in-regex Comment by Alan Moore on A positive number from 1 to 2^31 -1 in regex Alan Moore 2009-12-18T07:17:18Z 2009-12-18T07:17:18Z If you want to exclude zero, change the first two alternatives from <code>\d|\d{1,9}</code> to <code>[1-9]\d{0,8}|1\d{9}</code>. That will exclude any number that <i>starts</i> with <code>0</code>, not just zero. If you want to permit leading zeroes, you can match them explicitly: <code>^0&#42;(</code> etc. http://stackoverflow.com/questions/1915013/replacing-variable-numbers-of-items-regex/1915085#1915085 Comment by Alan Moore on Replacing variable numbers of items... regex? Alan Moore 2009-12-18T04:42:51Z 2009-12-18T04:42:51Z <code>\G</code> is not that rare, really: <a href="http://www.regular-expressions.info/continue.html" rel="nofollow">regular-expressions.info/continue.html</a> . It's just that, outside of Perl (where it originated--of course!), people don't seem to think of it very often. At least, I don't; this isn't the first time you've managed to blindside me with it. :) http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1914122#1914122 Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:50:43Z 2009-12-16T13:50:43Z <code>(^|[^&lt;])</code> would need to match the <code>b</code> the second time around, but that was already consumed by <code>([^&lt;]|$)</code> when the first replacement was done. http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1913919#1913919 Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:45:44Z 2009-12-16T13:45:44Z <code>{1}</code> is just another quantifier; it doesn't say anything about what's before or after the thing being quantified. People tend to read more meaning into it because it's so hard to believe a language that's so pathologically parsimonious will let you use three whole characters to say something that doesn't need to be said at all. :P http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1913986#1913986 Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:25:16Z 2009-12-16T13:25:16Z BTW, if you're really using <code>&quot;\\1(\\2&quot;</code> as the replacement string, you should be getting <code>1(2</code> for output. The correct syntax would be <code>&quot;$1($2&quot;</code>. http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1913986#1913986 Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:19:59Z 2009-12-16T13:19:59Z I've tested this in Java, not a simulator, and it works as expected: <code>&lt;</code> is replaced and <code>&lt;&lt;</code> is left alone. And it doesn't matter whether I use <code>String#replaceAll</code> or <code>Matcher#replaceAll</code>, the result is the same. http://stackoverflow.com/questions/1913900/java-regexp-overmatches/1914122#1914122 Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:07:14Z 2009-12-16T13:07:14Z As Mark suggested, it doesn't work for <code>a&lt;b&lt;c</code> -- it only replaces the first <code>&lt;</code>. But the lookaround version the OP posted does work. http://stackoverflow.com/questions/1913900/java-regexp-overmatches Comment by Alan Moore on Java regexp overmatches Alan Moore 2009-12-16T13:01:52Z 2009-12-16T13:01:52Z <code>s = s.replaceAll(&quot;(?&lt;!&lt;)&lt;(?!&lt;)&quot;, &quot;X&quot;);</code> works fine for me. http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914008#1914008 Comment by Alan Moore on Number grouping using regexps Alan Moore 2009-12-16T11:57:38Z 2009-12-16T11:57:38Z That's a cool resource, though; thanks for bringing it to my attention. http://stackoverflow.com/questions/1913636/number-grouping-using-regexps/1914008#1914008 Comment by Alan Moore on Number grouping using regexps Alan Moore 2009-12-16T11:36:18Z 2009-12-16T11:36:18Z +1 for the demo, but you left the <code>$1</code> out of the replacement string. Iinstead of <code>1 000</code>, <code>100</code> and <code>87 654 321</code> it's displaying <code>000</code>, <code>100</code> and <code>8 65 321</code>.