[Issue 10796] std.regex: ctRegex bug with '.' and $ in multi-line mode

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sun Aug 11 12:49:58 PDT 2013


http://d.puremagic.com/issues/show_bug.cgi?id=10796


Dmitry Olshansky <dmitry.olsh at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


--- Comment #1 from Dmitry Olshansky <dmitry.olsh at gmail.com> 2013-08-11 12:49:57 PDT ---
(In reply to comment #0)
> The tricky test case directly from run-time regex test suite:
> 
> import std.regex;

import std.algorithm;

> 
> void main()
> {
>     auto cr9 = ctRegex!(".*$", "gm");
>     auto m9 = match("First\rSecond", cr9);
>     assert(m9);
>     assert(equal(map!"a.hit"(m9), ["First", "", "Second"]));
> }

Fixed:
https://github.com/D-Programming-Language/phobos/pull/1464

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list