Where is the order of operator precedence documented for the .NET Regex class?

I see this, but that's for JScript.

Also, it appears this is not affected by RegexOptions.ECMAScript, but confirmation would be helpful.

link|improve this question

70% accept rate
Is it possible to see the expression that confuses you? – zerkms Feb 21 at 22:00
1  
The precedence is the same as that in the JScript link: unary operators bind tightest, then concatenation, then alternation. Brackets work as you'd expect. – Porges Feb 21 at 22:01
@zerkms, I'm writing expressions, and I want to know when I need parens. Porges, that's what I'm hoping, but I'd like to see it documented. If it isn't, I'll file a Connect bug. – Matthew Flaschen Feb 21 at 22:08
1  
@zerkms, I'm not sure what you mean by "operation priority". However, non-capturing groups can certainly be used to change the overall precedence. For instance, assuming anchors bind more strongly than alternation, it would make sense to use non-capturing groups around an alternation in the whole expression. ^(?:this|that)$ – Matthew Flaschen Feb 21 at 22:13
1  
@zerkms, no. See Ideone. – Matthew Flaschen Feb 21 at 22:24
show 7 more comments
feedback

1 Answer

I don't think the real answer is as simple as you'd like. The short (and incomplete) answer is simply "all expressions are evaluated left to right" ...

For the long answer go here.

http://msdn.microsoft.com/en-us/library/e347654k.aspx

The .NET Framework regular expression engine is a backtracking regular expression matcher that incorporates a traditional Nondeterministic Finite Automaton (NFA) engine ... traditional NFA engines perform pattern matching, their processing order is driven by the regular expression pattern. As it processes a particular language element, the engine uses greedy matching; that is, it matches as much of the input string as it possibly can. But it also saves its state after successfully matching a subexpression. If a match eventually fails, the engine can return to a saved state so it can try additional matches.

Edit: Forgot to answer the second part of your question.

With regard to RegexOptions.ECMAScript, you can reference these docs:

http://msdn.microsoft.com/en-us/library/yd1hzczs.aspx

The behavior of ECMAScript and canonical regular expressions differs in three areas: character class syntax, self-referencing capturing groups, and octal versus backreference interpretation.

It doesn't look like "order" is affected, but there could be other issues. The docs do a good job of illustrating the differences.

link|improve this answer
The processing order is different from the operator precedence order. The processing order describes how it's executed (on each input) after it's parsed. Operator precedence is a key part of how it's parsed. I agree that "all expressions are evaluated left to right" is not a complete answer. If it were, ^\d would be a slash at the beginning of the string (^\) followed by a literal d. – Matthew Flaschen Feb 28 at 16:37
feedback

Your Answer

 
or
required, but never shown

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