digitalmars.D.bugs - [Issue 9979] New: Regex bug
- d-bugmail puremagic.com (27/27) Apr 22 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (14/14) Apr 22 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (30/30) Apr 22 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (16/33) Apr 23 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (8/12) Apr 23 2013 I'll try but although I've managed to track it down, the regex code is s...
- d-bugmail puremagic.com (6/6) Apr 23 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (9/9) May 25 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
- d-bugmail puremagic.com (11/11) May 26 2013 http://d.puremagic.com/issues/show_bug.cgi?id=9979
http://d.puremagic.com/issues/show_bug.cgi?id=9979 Summary: Regex bug Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody puremagic.com ReportedBy: diggsey googlemail.com The following regular expression gives a zero length match for the last match in the string: regex(r"\b([a-zA-Z_][a-zA-Z_0-9]*)\b(\s*\([^)]*\))?", "g"); Example: auto r = regex(r"\b([a-zA-Z_][a-zA-Z_0-9]*)\b(\s*\([^)]*\))?", "g"); string text = replace("A ? B : C", r, "0"); writeln(text); Expected output: "0 ? 0 : 0" Actual output: "0 ? 0 : 0C" -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 22 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 I've narrowed it down to what seems to be an off-by-one error in the regex engine when a word break is encountered while the current string position is at the end of the string. This much simpler regex demonstrates the problem: auto r = regex(r"A\b", "g"); string s = "A"; auto m = s.match(r); writeln(m); Clearly this should match "A" but it instead matches an empty string before A. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 22 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 I've tracked it down to a flaw in the algorithm: If the | represents the read position, of the regex: A|B The front character is "B" and the engine uses BackLooper to read the previous character, and then compares the two characters to find a word boundary. The problem is that BackLooper uses the index of the input stream as a base, not the current read position, and the input stream is one character ahead because "B" has already been read. Input stream position: AB| This is normally not a problem because there is an off-by-one error in BackLooper so it always reads one character further back than it should which in most circumstances cancels out the two errors and gives the correct result (A). The problem occurs when at the end of the string because the input stream position stops before going past the end. Input stream position and read position: AB| In this case the two characters should be "B" and <end of string>, but because BackLooper reads one character further back the two characters are "A" and <end of string> missing out B entirely. This error propagates out in the form of matching a string of zero length. The most sensible way of fixing this would seem to be to fix the off-by-one error in BackLooper, and make it use the read position rather than the input stream position as a base. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 22 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 Dmitry Olshansky <dmitry.olsh gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dmitry.olsh gmail.com 13:25:38 PDT ---I've tracked it down to a flaw in the algorithm:[snip] Yes, that's how it's working...The problem occurs when at the end of the string because the input stream position stops before going past the end. Input stream position and read position: AB| In this case the two characters should be "B" and <end of string>, but because BackLooper reads one character further back the two characters are "A" and <end of string> missing out B entirely. This error propagates out in the form of matching a string of zero length. The most sensible way of fixing this would seem to be to fix the off-by-one error in BackLooper, and make it use the read position rather than the input stream position as a base.Nice analysis. Never liked the way this part of it was implemented... Since you went that far you can just go ahead and prepare a pull request with a fix :) Alternatively I'll get myself busy with it in a couple of days. -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 23 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979Nice analysis. Never liked the way this part of it was implemented... Since you went that far you can just go ahead and prepare a pull request with a fix :) Alternatively I'll get myself busy with it in a couple of days.I'll try but although I've managed to track it down, the regex code is still fairly opaque to me. It's quite likely I'll break something else in the process! -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 23 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 https://github.com/D-Programming-Language/phobos/pull/1273 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Apr 23 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 Commit pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/ebb14579ce8ba69324372623123601d5b158572e fix issue 9979 - regex back-looper bug -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 25 2013
http://d.puremagic.com/issues/show_bug.cgi?id=9979 Dmitry Olshansky <dmitry.olsh gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED Summary|Regex bug |Regex bug with \b and | |look-behind -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
May 26 2013