From 8ef3f8402e08488d11f8140d640f5624b38e74ae Mon Sep 17 00:00:00 2001 From: Ciprian Date: Tue, 17 Aug 2021 12:14:55 +0300 Subject: [PATCH] Fixed typo for en translation in section 4.1 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 34ef8d6..223e6a2 100644 --- a/README.md +++ b/README.md @@ -421,7 +421,7 @@ regular expressions: Lookbehinds and lookaheads (also called lookarounds) are specific types of ***non-capturing groups*** (used to match a pattern but without including it in the matching -list). Lookarounds are used when we a pattern must be +list). Lookarounds are used when a pattern must be preceded or followed by another pattern. For example, imagine we want to get all numbers that are preceded by the `$` character from the string `$4.44 and $10.88`. We will use the following regular expression `(?<=\$)[0-9\.]*`