On Thursday, 11 September 2014 at 22:39:40 UTC, H. S. Teoh via Digitalmars-d-learn wrote:
        foreach (line; myInput.split(regex(`\n|\r\n|\r`)))

Shouldn't you use

        foreach (line; myInput.split(regex("\n|\r\n|\r")))

here?

Reply via email to