vote up 1 vote down star
1

I'm writing (in C#) a simple parser to process a scripting language that looks a lot like classic C.

On one script file I have, the regular expression that I'm using to recognize /* block comments */ is going into some kind of infinite loop, taking 100% CPU for ages.

The Regex I'm using is this:

/\*([^*]|[\r\n]|(\*+([^*/]|[\r\n])))*\*+/

Any suggestions on why this might get locked up?

Alternatively, what's another Regex I could use instead?

More information:

  • Working in C# 3.0 targeting .NET 3.5;
  • I'm using the Regex.Match(string,int) method to start matching at a particular index of the string;
  • I've left the program running for over an hour, but the match isn't completed;
  • Options passed to the Regex constructor are RegexOptions.Multiline and RegexOptions.IgnorePatternWhitespace;
  • The regex works correctly for 452 of my 453 test files.
flag

Using regular expressions in this way is difficult. How should you distinguish between a comment and a string that contains a sequence with the same syntax as a comment? – Gumbo Jan 20 at 20:20
In his book Mastering Regular expressions Jeffrey Friedl explains how it was thought near impossible to get a comment finder for C that covered all the combinations of /* in quoted strings, vice versa, et cetera... But he then goes on to describe a complex regex that does it. – it depends Jan 20 at 20:29
@Gumbo - I use this regex to check for a comment starting at a known index point, not anywhere at all in the text. When I find a string, or a comment, I skip the entire span before checking for another match. – Bevan Jan 21 at 1:36

3 Answers

vote up 4 vote down check

Some problems I see with your regex:

There's no need for the |[\r\n] sequences in your regex; a negated character class like [^*] matches everything except '*', including line separators. It's only when you're using the '.' (dot) metacharacter that you have to worry about those.

Once you're inside the comment, the only character you have to look for is an asterisk; as long as you don't see one of those, you can gobble up as many characters you want. That means it makes no sense to use [^*] when you can use [^*]+ instead. In fact, you might as well put that in an atomic group -- (?>[^*]+) -- because you'll never have any reason to give up any of those not-asterisks once you've matched them.

Filtering out extraneous junk, the final alternative inside your outermost parens is \*+[^*/] -- that means "one or more asterisks, followed by a character that isn't an asterisk or a slash". That will always match the asterisk at the end of the comment, and it will always have to give it up again because the next character is a slash. In fact, if there are twenty asterisks leading up to the final slash, that part of your regex will match them all, then it will give them all up, one by one. Then the final part -- \*+/ -- will match them "for reals".

For maximum performance, I would use this regex:

/\*(?>(?:(?>[^*]+)|\*(?!/))*)\*/

This will match a well-formed comment very quickly, but more importantly, if it starts to match something that isn't a valid comment, it will fail as qucikly as possible.

link|flag
Thanks Alan, this looks like what I need - though I need to study it a bit to make sure I understand it! Will report back after I've tried it. – Bevan Jan 21 at 1:40
Apologies - forgot to report back promptly. Yes, this is what I needed. Thanks for your help. – Bevan Feb 19 at 19:48
vote up 1 vote down

I think your expression is way too complicated. Applied to a large string, the many alternatives imply a lot of backtracking. I guess this is the source of the performance hit you see.

If the basic assumption is to match everything from the "/*" until the first "*/" is encountered, then one way to do it would be this (as usual, regex is not suited for nested structures, so nesting block comments does not work):

/\*(.(?!\*/))*.?\*/             // run this in single line (dotall) mode

Essentially this says: "/*", followed by anything that itself is not followed by "*/", followed by "*/".

Alternatively, you can use the simpler:

/\*.*?\*/                       // run this in single line (dotall) mode

Non-greedy matching like this has the potential to go wrong in an edge case - currently I can't think of one where this expression might fail, but I'm not entirely sure.

link|flag
vote up 1 vote down

You may want to try the option Singleline rather than Multiline, then you don't need to worry about \r\n. With that enabled the following worked for me with a simple test which included comments that spanned more than one line:

/\*.*?\*/
link|flag
But won't the greedy matching of the regex matcher mean that this will span from the /* opening of the first comment */ to the */ closing of the last */ ? – Bevan Jan 21 at 1:38
The ? makes the .* non-greedy or lazy, as described here: regular-expressions.info/repeat.html#lazy/… – Alan Moore Jan 21 at 5:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.