We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6dd1311 + 163e61a commit 5249604Copy full SHA for 5249604
5-regular-expressions/15-regexp-infinite-backtracking-problem/article.md
@@ -121,7 +121,7 @@ What happen during the search of `pattern:(\d+)*$` in the line `subject:12345678
121
\d+.......
122
(123456789)z
123
```
124
-2. Then it tries to apply the start around the parentheses `pattern:(\d+)*`, but there are no more digits, so it the star doesn't give anything.
+2. Then it tries to apply the star around the parentheses `pattern:(\d+)*`, but there are no more digits, so it the star doesn't give anything.
125
126
Then the pattern has the string end anchor `pattern:$`, and in the text we have `subject:z`.
127
0 commit comments