From ba6ee18ded5e76e852dd7eab89e6cc2b420b42d2 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 30 Jul 2021 19:24:35 -0700 Subject: Added strict mode for upto operator: ..=Abc --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 3cfa038..4d4445a 100644 --- a/README.md +++ b/README.md @@ -41,8 +41,9 @@ Pattern | Meaning `"foo"`, `'foo'` | The literal string `foo`. There are no escape sequences within strings. `pat1 pat2` | `pat1` followed by `pat2` `pat1 / pat2` | `pat1` if it matches, otherwise `pat2` -`..pat` | Any text up to and including `pat` (except newlines) +`.. pat` | Any text up to and including `pat` (except newlines) `.. % skip pat` | Any text up to and including `pat` (except newlines), skipping over instances of `skip` +`.. = repeat pat` | Any number of repetitions of `repeat` up to and including `pat` `.` | Any single character (except newline) `^^` | The start of the input `^` | The start of a line -- cgit v1.2.3