We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd6052f commit 6dbd306Copy full SHA for 6dbd306
9-regular-expressions/14-regexp-lookahead-lookbehind/article.md
@@ -26,7 +26,7 @@ More complex tests are possible, e.g. `pattern:X(?=Y)(?=Z)` means:
26
27
1. Find `pattern:X`.
28
2. Check if `pattern:Y` is immediately after `pattern:X` (skip if isn't).
29
-3. Check if `pattern:Z` is immediately after `pattern:X` (skip if isn't).
+3. Check if `pattern:Z` is immediately after `pattern:Y` (skip if isn't).
30
4. If both tests passed, then it's the match.
31
32
In other words, such pattern means that we're looking for `pattern:X` followed by `pattern:Y` and `pattern:Z` at the same time.
0 commit comments