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
Copy file name to clipboardExpand all lines: 9-regular-expressions/14-regexp-lookahead-lookbehind/2-insert-after-head/solution.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ As you can see, there's only lookbehind part in this regexp.
26
26
27
27
It works like this:
28
28
- At every position in the text.
29
-
- Check if it's preceeded by `pattern:<body.*?>`.
29
+
- Check if it's preceded by `pattern:<body.*?>`.
30
30
- If it's so then we have the match.
31
31
32
32
The tag `pattern:<body.*?>` won't be returned. The result of this regexp is literally an empty string, but it matches only at positions preceeded by `pattern:<body.*?>`.
0 commit comments