diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2021-07-30 19:24:35 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2021-07-30 19:24:35 -0700 |
| commit | ba6ee18ded5e76e852dd7eab89e6cc2b420b42d2 (patch) | |
| tree | 8a238dbfcf91766ee3b882d8c87a9587ca107119 /README.md | |
| parent | 18e8a131f58a54008512b05062382900027bf1d9 (diff) | |
Added strict mode for upto operator: ..=Abc
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |
