From 971cccc00224e9dee3a23ca7893e9706e45d056c Mon Sep 17 00:00:00 2001 From: Hamish Knight Date: Thu, 3 Mar 2022 21:40:07 +0000 Subject: [PATCH] Fix negative lookbehind syntax in RegexSyntax.md --- Documentation/Evolution/RegexSyntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/Evolution/RegexSyntax.md b/Documentation/Evolution/RegexSyntax.md index 0132bdbe9..5bfdd5e8a 100644 --- a/Documentation/Evolution/RegexSyntax.md +++ b/Documentation/Evolution/RegexSyntax.md @@ -337,7 +337,7 @@ These groups evaluate the input ahead or behind the current matching position, w - `(?=`: A lookahead, which matches against the input following the current matching position. - `(?!`: A negative lookahead, which ensures a negative match against the input following the current matching position. - `(?<=`: A lookbehind, which matches against the input prior to the current matching position. -- `(?!<`: A negative lookbehind, which ensures a negative match against the input prior to the current matching position. +- `(?