Merge pull request #237 from Ciprian-c4/master

Fixed typo for en translation in section 4.1
This commit is contained in:
Zeeshan Ahmad 2021-10-17 12:44:55 +04:00 committed by GitHub
commit a4fef7d164
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -423,7 +423,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\.]*`