From 570f616a8d2161113cd3d2cf9996a4cfe5b9f3ae Mon Sep 17 00:00:00 2001 From: VKondakoff Date: Tue, 9 Apr 2024 20:51:46 +0300 Subject: [PATCH 1/3] Update regex.asciidoc fixing ligature issue --- doc/pages/regex.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pages/regex.asciidoc b/doc/pages/regex.asciidoc index 416efd1f0..434d892e1 100644 --- a/doc/pages/regex.asciidoc +++ b/doc/pages/regex.asciidoc @@ -145,7 +145,7 @@ More complex assertions can be expressed with lookarounds: text following the current position. * `(?!...)` is a negative lookahead; it will match if its content does not match the text following the current position. -* `(?<=...)` is a lookbehind; it will match if its content matches +* `(?\<\=...)` is a lookbehind; it will match if its content matches the text preceding the current position. * `(? Date: Tue, 9 Apr 2024 20:53:27 +0300 Subject: [PATCH 2/3] Update regex.asciidoc --- doc/pages/regex.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pages/regex.asciidoc b/doc/pages/regex.asciidoc index 434d892e1..fb79d2d9b 100644 --- a/doc/pages/regex.asciidoc +++ b/doc/pages/regex.asciidoc @@ -145,7 +145,7 @@ More complex assertions can be expressed with lookarounds: text following the current position. * `(?!...)` is a negative lookahead; it will match if its content does not match the text following the current position. -* `(?\<\=...)` is a lookbehind; it will match if its content matches +* `(?<\=...)` is a lookbehind; it will match if its content matches the text preceding the current position. * `(? Date: Tue, 9 Apr 2024 20:54:59 +0300 Subject: [PATCH 3/3] Update regex.asciidoc fixing <= ligature issues Change <= to <= --- doc/pages/regex.asciidoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/pages/regex.asciidoc b/doc/pages/regex.asciidoc index fb79d2d9b..d2b0a4344 100644 --- a/doc/pages/regex.asciidoc +++ b/doc/pages/regex.asciidoc @@ -145,7 +145,7 @@ More complex assertions can be expressed with lookarounds: text following the current position. * `(?!...)` is a negative lookahead; it will match if its content does not match the text following the current position. -* `(?<\=...)` is a lookbehind; it will match if its content matches +* `(?<=...)` is a lookbehind; it will match if its content matches the text preceding the current position. * `(?