December 18, 2023 General » Re: Do we need faster regex? | |||
|---|---|---|---|
| |||
As long as you use std.regex at runtime this is no longer the case... | |||
December 18, 2023 General » Re: Do we need faster regex? | |||
|---|---|---|---|
| |||
I really like regex as a thing, but I have had to drop it because... | |||
December 18, 2023 General » Re: Do we need faster regex? | |||
|---|---|---|---|
| |||
Yes, RE2 is the main contender, rewind-regex aims at basically the same feature set... | |||
December 17, 2023 General » Re: Do we need faster regex? | |||
|---|---|---|---|
| |||
I never needed to use backreferences in last 25 years. Something that has similar performance... | |||
December 17, 2023 General » Do we need faster regex? | |||
|---|---|---|---|
| |||
So I’ve been working on rewind-regex trying to correct all of the decisions in... | |||
December 12, 2023 Announce » Re: D Language Foundation October 2023 Quarterly Meeting Summary | |||
|---|---|---|---|
| |||
I should note that regex will need some updating for the most recent LLVMs that... | |||
December 11, 2023 Learn » Re: Reading .txt File into String and Matching with RegEx | |||
|---|---|---|---|
| |||
...org/phobos/std_regex.html#regex https://dlang.org/phobos/std_regex.html#.RegexMatch.captures... | |||
December 11, 2023 Learn » Re: Reading .txt File into String and Matching with RegEx | |||
|---|---|---|---|
| |||
...Thanks! ``` import std.stdio : writeln; import std.regex : matchAll; import std.file : read; void main... | |||
December 11, 2023 Learn » Re: Reading .txt File into String and Matching with RegEx | |||
|---|---|---|---|
| |||
...match two characters? Each dot being the regex to match a single character, so `r... | |||
December 10, 2023 Learn » Reading .txt File into String and Matching with RegEx | |||
|---|---|---|---|
| |||
...d** ``` import std.stdio : writeln; import std.regex : matchAll; import std.file : read; void main... | |||
Copyright © 1999-2021 by the D Language Foundation