From dd3688f166d660df36a6ffda9fda755877ed2665 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Tue, 25 Jan 2022 00:22:45 +0530 Subject: docs: readme update --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ece065..aaf9190 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Whitespaces are ignored (except within literals) * `a,b` => match `a` on current item followed by `b` on the next item (**sequence**) * `[name \s\T]` => match **property** of object (example matches items with property `name` as non-empty string) * `> n` | `>= n` | `< n` | `<= n` => **Comparison** with literal number [TODO] -* `/pat/` => Test string values against **regex** [TODO] +* `/pat/` => Test string values against **regex** * `"foobar"` => String literal (example matches the string `foobar`) * `-2.05` => Number literal (example matches the number `-2.05`) * `true` => Boolean literal (example matches the value `true`) @@ -35,7 +35,6 @@ Whitespaces are ignored (except within literals) - [ ] `match` function - [ ] Named capture groups - [ ] Non-capturing groups - - [ ] Regular expressions for string items - [ ] Nested list evaluation - [ ] Number comarison -- cgit v1.3.1