We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c3228a commit 8c1912dCopy full SHA for 8c1912d
README.md
@@ -421,7 +421,7 @@ or `the` which are followed by the word `fat`.
421
### 4.2 Negative Lookahead
422
423
Negative lookahead is used when we need to get all matches from input string
424
-that are not followed by a pattern. Negative lookahead defined same as we define
+that are not followed by a pattern. Negative lookahead is defined same as we define
425
positive lookahead but the only difference is instead of equal `=` character we
426
use negation `!` character i.e. `(?!...)`. Let's take a look at the following
427
regular expression `(T|t)he(?!\sfat)` which means: get all `The` or `the` words
0 commit comments