From a773b94da05d6667bb64cce89f3224aa7b883235 Mon Sep 17 00:00:00 2001 From: Denis Kyashif Date: Thu, 16 Apr 2020 10:24:44 +0300 Subject: [PATCH] add article on Regex implementation https://deniskyashif.com/2019/02/17/implementing-a-regular-expression-engine/ describes how to implement a regex engine from the parsing to the matching stage. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c5680dd..8256d20 100644 --- a/README.md +++ b/README.md @@ -320,6 +320,7 @@ * [**C**: _Regular Expression Matching Can Be Simple And Fast_](https://swtch.com/~rsc/regexp/regexp1.html) * [**JavaScript**: _Build a Regex Engine in Less than 40 Lines of Code_](https://nickdrane.com/build-your-own-regex/) * [**JavaScript**: _How to implement regular expressions in functional javascript using derivatives_](http://dpk.io/dregs/toydregs) +* [**JavaScript**: Implementing a Regular Expression Engine](https://deniskyashif.com/2019/02/17/implementing-a-regular-expression-engine/) * [**Perl**: _How Regexes Work_](https://perl.plover.com/Regex/article.html) * [**Scala**: _No Magic: Regular Expressions_](https://rcoh.svbtle.com/no-magic-regular-expressions)