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.
|
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
| |||
|
show 7 more comments
feedback
|
|
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
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
It doesn't look like "order" is affected, but there could be other issues. The docs do a good job of illustrating the differences. | ||||
feedback
|
^(?:this|that)$– Matthew Flaschen Feb 21 at 22:13