From 778c66a87daf64e0753120a9b0d2a7cc6adcd6a4 Mon Sep 17 00:00:00 2001 From: Steven Levithan Date: Fri, 7 Jun 2024 16:28:49 +0200 Subject: [PATCH] Regex.make library name updated to regex --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a238465..9dbb5e3 100644 --- a/README.md +++ b/README.md @@ -275,12 +275,12 @@ Many regexes found online are low quality. It's risky to use regexes you don't f ### Alternative regex builders and engines -- [Regex.make](https://github.com/slevithan/regex-make) - A template tag with context-aware interpolation and advanced features. -- [XRegExp](https://github.com/slevithan/xregexp) \[[*home*](https://xregexp.com/)] - Extended regex syntax, flags, and utils. +- [regex](https://github.com/slevithan/regex-make) - A template tag with best practices built-in and advanced features. +- [XRegExp](https://github.com/slevithan/xregexp) \[[*home*](https://xregexp.com/)] - Extended regex syntax, flags, and utils; useful for backcompat. - [incr-regex-package](https://github.com/nurulc/incr-regex-package) - Partial/incremental matching, used by [react-rxinput](https://github.com/nurulc/react-rxinput) for input validation with a regex mask. - [@iter-tools/regex](https://github.com/iter-tools/regex) - Non-backtracking engine for streaming evaluation. -### Readable regex composers +### Abstracted regex syntax - [Rexx](https://github.com/yyytcool/rexx) - A template tag that uses structured syntax with variables and comments. - [Melody](https://github.com/yoav-lavi/melody) \[[*docs*](https://yoav-lavi.github.io/melody/book/)] - A language that compiles to regexes.