Skip to content

Commit 436326e

Browse files
committed
Fix ziishaned#30 - Update html special character
1 parent 46af8e3 commit 436326e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ are after the word `The` or `the`.
381381
### 4.4 Negative Lookbehind
382382

383383
Negative lookbehind is used to get all the matches that are not preceded by a specific pattern. Negative lookbehind is denoted by
384-
`(?<!...)`. For example, the regular expression `(?&lt;!(T|t)he\s)(cat)` means: get all `cat` words from input string that
384+
`(?<!...)`. For example, the regular expression `(?<!(T|t)he\s)(cat)` means: get all `cat` words from input string that
385385
are not after the word `The` or `the`.
386386

387387
<pre>

0 commit comments

Comments
 (0)