C# Regex index in matching string where the match failed - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:52:27Zhttp://stackoverflow.com/feeds/question/107382http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed2 C# Regex index in matching string where the match failedRichie_W2008-09-20T06:30:04Z2008-09-22T19:15:14Z
<p>I am wondering if it is possible to extract the index position in a given string where a Regex failed when trying to match it? </p>
<p>For example, if my regex was "abc" and I tried to match that with "abd" the match would fail at index 2.</p>
<p>Thanks</p>
<p>Edit for clarification. The reason I need this is to allow me to simplify the parsing component of my application. The application is an Assmebly language teaching tool which allows students to write, compile, and execute assembly like programs. </p>
<p>Currently I have a tokenizer class which converts input strings into Tokens using regex's. This works very well. For example:</p>
<p>The tokenizer would produce the following tokens given the following input = "INP :x:"<br>:</p>
<p>Token.OPCODE, Token.WHITESPACE, Token.LABEL, Token.EOL</p>
<p>These tokens are then analysed to ensure they conform to a syntax for a given statement. Currently this is done using IF statements and is proving cumbersome. The upside of this approach is that I can provide detailed error messages. I.E</p>
<p>if(token[2] != Token.LABEL) { throw new SyntaxError("Expected label"); }</p>
<p>I want to use a regular expression to define a syntax instead of the annoying IF statements. But in doing so I lose the ability to return detailed error reports. I therefore would at least like to inform the user of WHERE the error occured.</p>
http://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed/107410#1074101Answer by Yacoder for C# Regex index in matching string where the match failedYacoder2008-09-20T06:39:04Z2008-09-20T06:39:04Z<p>I guess such an index would only have meaning in some simple case, like in your example.</p>
<p>If you'll take a regex like "ab*c*z" (where by * I mean any character) and a string "abbbcbbcdd", what should be the index, you are talking about?
It will depend on the algorithm used for mathcing...
Could fail on "abbbc..." or on "abbbcbbc..."</p>
http://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed/107528#1075280Answer by ColinYounger for C# Regex index in matching string where the match failedColinYounger2008-09-20T07:36:31Z2008-09-20T07:36:31Z<p>I don't believe it's possible, but I am intrigued why you would want it.</p>
http://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed/107540#1075401Answer by torial for C# Regex index in matching string where the match failedtorial2008-09-20T07:44:04Z2008-09-20T07:44:04Z<p>I agree with Colin Younger, I don't think it is possible with the existing Regex class. However, I think it is doable if you are willing to sweat a little:</p>
<ol>
<li>Get the Regex class source code
(e.g.
<a href="http://www.codeplex.com/NetMassDownloader" rel="nofollow">http://www.codeplex.com/NetMassDownloader</a>
to download the .Net source). </li>
<li>Change the code to have a readonly
property with the failure index. </li>
<li>Make sure your code uses that Regex
rather than Microsoft's.</li>
</ol>
http://stackoverflow.com/questions/107382/c-regex-index-in-matching-string-where-the-match-failed/108715#1087150Answer by Michael Carman for C# Regex index in matching string where the match failedMichael Carman2008-09-20T16:51:40Z2008-09-20T16:51:40Z<p>In order to do that you would need either callbacks embedded in the regex (which AFAIK C# doesn't support) or preferably hooks into the regex engine. Even then, it's not clear what result you would want if backtracking was involved.</p>