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 df4ce9f commit 327cf28Copy full SHA for 327cf28
PERFORMANCE.md
@@ -193,10 +193,6 @@ a few examples of regexes that get literal prefixes detected:
193
* `a*b` detects `a` and `b`
194
* `(ab){3,6}` detects `ababab`
195
196
-Literals may also be used in other ways. For example, if a regex *ends* with a
197
-literal, then it may be possible to scan for that literal and search backwards
198
-from a match location using the DFA.
199
-
200
Literals in anchored regexes can also be used for detecting non-matches very
201
quickly. For example, `^foo\w+` and `\w+foo$` may be able to detect a non-match
202
just by examing the first (or last) three bytes of the haystack.
0 commit comments