mirror of
https://github.com/ziishaned/learn-regex.git
synced 2025-09-29 23:30:32 -04:00
Merge pull request #1 from zeeshanu/master
Fix #30 - Update html special character
This commit is contained in:
commit
8bf6076b78
@ -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