You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The next example, checked with dmd 2.109.1, uses a combination of lookbehind and lookahead assertions:
importstd.stdio;
importstd.regex;
voidmain()
{
auto re = regex(r"(?<=(..)(?=(..)))..cde");
auto captures = std.regex.matchFirst("12345abcde", re);
writeln(captures[0]); // "abcde" as expected
writeln(captures[1]); // "45" as expected
writeln(captures[2]); // nothing, but "ab" is expected
}
The value of captures[2] should be “ab”, but it is null. (Other prominent engines, in various languages, give correct results).
According to documentation, the std.regex library should support “arbitrary length and complexity lookbehind, including lookahead in lookbehind and vice-versa”.
The modified patterns, such as (?<=(..))(?=(..))..cde, seem to work correctly.
The text was updated successfully, but these errors were encountered:
The next example, checked with dmd 2.109.1, uses a combination of lookbehind and lookahead assertions:
The value of captures[2] should be “ab”, but it is null. (Other prominent engines, in various languages, give correct results).
According to documentation, the std.regex library should support “arbitrary length and complexity lookbehind, including lookahead in lookbehind and vice-versa”.
The modified patterns, such as
(?<=(..))(?=(..))..cde
, seem to work correctly.The text was updated successfully, but these errors were encountered: