mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-08-06 11:36:47 -04:00
Fixes a typo in README.md
This commit is contained in:
parent
d6c5519e19
commit
f40befd00a
@ -419,7 +419,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\.]*`
|
||||
|
Loading…
x
Reference in New Issue
Block a user