Search

December 18, 2023
General »
As long as you use std.regex at runtime this is no longer the case...
December 18, 2023
General »
I really like regex as a thing, but I have had to drop it because...
December 18, 2023
General »
Yes, RE2 is the main contender, rewind-regex aims at basically the same feature set...
December 17, 2023
General »
I never needed to use backreferences in last 25 years. Something that has similar performance...
December 17, 2023
General »
So I’ve been working on rewind-regex trying to correct all of the decisions in...
December 12, 2023
Announce »
I should note that regex will need some updating for the most recent LLVMs that...
December 11, 2023
Learn »
...org/phobos/std_regex.html#regex
https://dlang.org/phobos/std_regex.html#.RegexMatch.captures...
December 11, 2023
Learn »
...Thanks!

```
import std.stdio : writeln;
import std.regex : matchAll;
import std.file  : read;

void main...
December 11, 2023
Learn »
...match two characters?
Each dot being the regex to match a single character,
so `r...
December 10, 2023
Learn »
...d**
```
import std.stdio : writeln;
import std.regex : matchAll;
import std.file  : read;

void main...
1 2 3 4 5 6 7
Next ›   Last »