http://d.puremagic.com/issues/show_bug.cgi?id=8529
Summary: ctRegex - named submatch - hash-table exception
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 Daniel <[email protected]> 2012-08-09 09:40:46 PDT ---
Reported on v2.060 (but no version seems to work).
The code is based on the opIndex example from:
http://dlang.org/phobos/std_regex.html#regex
The normal regex version is functional, but when converting to ctRegex, the
hashtable lookup throws.(
auto m = match("a = 42;",
ctRegex!(`(?P<var>\S+)\s*=\s*(?P<value>\d+);`));
auto c = m.captures;
// c["var"]; =>
[email protected](2145): Range violation
// c["value"]; =>
Object.Exception@C:\D\dmd2\windows\bin\..\..\src\phobos\std\regex.d(2145):
no submatch named value
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------