mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-08-04 18:46:40 -04:00
Fixed typo for en translation in section 4.1
This commit is contained in:
parent
9498781445
commit
8ef3f8402e
@ -421,7 +421,7 @@ regular expressions:
|
|||||||
|
|
||||||
Lookbehinds and lookaheads (also called lookarounds) are specific types of
|
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
|
***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
|
preceded or followed by another pattern. For example, imagine we want to get all
|
||||||
numbers that are preceded by the `$` character from the string
|
numbers that are preceded by the `$` character from the string
|
||||||
`$4.44 and $10.88`. We will use the following regular expression `(?<=\$)[0-9\.]*`
|
`$4.44 and $10.88`. We will use the following regular expression `(?<=\$)[0-9\.]*`
|
||||||
|
Loading…
x
Reference in New Issue
Block a user