http://d.puremagic.com/issues/show_bug.cgi?id=10796
Summary: std.regex: ctRegex bug with '.' and $ in multi-line
mode
Product: D
Version: D2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Dmitry Olshansky <[email protected]> 2013-08-11
12:48:23 PDT ---
The tricky test case directly from run-time regex test suite:
import std.regex;
void main()
{
auto cr9 = ctRegex!(".*$", "gm");
auto m9 = match("First\rSecond", cr9);
assert(m9);
assert(equal(map!"a.hit"(m9), ["First", "", "Second"]));
}
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------