Merge pull request #1 from zeeshanu/master

Fix #30 - Update html special character
This commit is contained in:
Emmanuel Arias 2017-08-11 09:27:49 -03:00 committed by GitHub
commit 8bf6076b78

View File

@ -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 `(?&lt;!(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>