regular expression engine and ranges

2014-12-02 Thread ketmar via Digitalmars-d-learn
Hello. is there any decent regular expression engine which works with input ranges? under decent i mean good D code, [t]nfa and no backtracking. support for captures and greedy/non-greedy modes are must. i found that some popular regex libraries and std.regex are sure that the only data layout

Re: regular expression engine and ranges

2014-12-02 Thread MrSmith via Digitalmars-d-learn
On Tuesday, 2 December 2014 at 19:17:43 UTC, ketmar via Digitalmars-d-learn wrote: Hello. is there any decent regular expression engine which works with input ranges? under decent i mean good D code, [t]nfa and no backtracking. support for captures and greedy/non-greedy modes are must. i

Re: regular expression engine and ranges

2014-12-02 Thread ketmar via Digitalmars-d-learn
On Tue, 02 Dec 2014 22:47:05 + MrSmith via Digitalmars-d-learn digitalmars-d-learn@puremagic.com wrote: IIRC, there was a request for ranged regex in phobos somewhere. Is there anything simple that can be easily ported? i don't think so. i.e. there are either very simple and barely usable