dlangBugzillaToGithub

Results 337 comments of dlangBugzillaToGithub

#### dmitry.olsh (@DmitryOlshansky) commented on 2016-04-06T12:53:49Z ````markdown Ivan Kazmenko (In reply to Ivan Kazmenko from comment #0) > I want to test for the pattern "two consecutive characters, arbitrary >...

#### dmitry.olsh (@DmitryOlshansky) commented on 2017-08-25T10:10:55Z ````markdown *** Issue 17520 has been marked as a duplicate of this issue. *** ````

#### dmitry.olsh (@DmitryOlshansky) commented on 2017-08-25T10:13:16Z ````markdown *** Issue 16251 has been marked as a duplicate of this issue. *** ````

#### mipri commented on 2019-11-24T11:16:53Z ````markdown > a) Use what works for now. Is this an option anymore? bmatch() no longer matches this result, and appears to have been deprecated...

#### bugzilla (@WalterBright) commented on 2019-12-01T15:58:02Z ````markdown Seems to work meanwhile... ````

#### oddp commented on 2020-06-19T10:41:34Z ````markdown This backreference issue isn't fixed entirely: void main () { import std.regex, std.stdio; auto r = r"(..).*\1"; foreach (s; ["abab", "abcab", "xababx", "xabcabx"]) writefln("%s...

#### dkorpel commented on 2023-06-09T19:45:28Z ````markdown I reduced the example a bit: ```D struct B { int j; bool down() {return true;} } enum button { shift = B(0), down...