diff --git a/README.md b/README.md index 9f08223..f36034c 100644 --- a/README.md +++ b/README.md @@ -242,6 +242,13 @@ Contributions are welcome. Add links through pull requests ([guidelines](CONTRIB ℹ️ With backtracking engines, how you craft a regex can affect how fast it finds matches or reports failures. +
+ ✳️ Notable mentions +
+ +- [Performance of Regular Expressions](https://medium.com/textmaster-engineering/performance-of-regular-expressions-81371f569698) - On backtracking performance, with detailed examples. +
+ ### Regex engine optimizations - [Regular Expression Matching Can Be Simple And Fast](https://swtch.com/~rsc/regexp/regexp1.html) - On non-backtracking engines. A [follow up](https://swtch.com/~rsc/regexp/regexp3.html) includes comparisons of RE2 and PCRE performance. @@ -261,13 +268,6 @@ Contributions are welcome. Add links through pull requests ([guidelines](CONTRIB ⚠️ These tools have limitations on supported syntax. -
- ✳️ Notable mentions -
- -- [On backtracking performance, with detailed examples](https://medium.com/textmaster-engineering/performance-of-regular-expressions-81371f569698) -
- ## Collections of patterns *Prewritten regexes for specific tasks.*