mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-08-06 03:26:42 -04:00
Fix #30 - Update html special character
This commit is contained in:
parent
46af8e3ea0
commit
436326e632
@ -381,7 +381,7 @@ are after the word `The` or `the`.
|
||||
### 4.4 Negative Lookbehind
|
||||
|
||||
Negative lookbehind is used to get all the matches that are not preceded by a specific pattern. Negative lookbehind is denoted by
|
||||
`(?<!...)`. For example, the regular expression `(?<!(T|t)he\s)(cat)` means: get all `cat` words from input string that
|
||||
`(?<!...)`. For example, the regular expression `(?<!(T|t)he\s)(cat)` means: get all `cat` words from input string that
|
||||
are not after the word `The` or `the`.
|
||||
|
||||
<pre>
|
||||
|
Loading…
x
Reference in New Issue
Block a user