Skip to content

Commit

Permalink
Fixed typo for en translation in section 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ciprian-c4 committed Aug 17, 2021
1 parent 9498781 commit 8ef3f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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\.]*`
Expand Down

0 comments on commit 8ef3f84

Please sign in to comment.