regexp.md - add {,x} character class

This commit is contained in:
David Winterstein 2019-01-04 14:49:58 +01:00 committed by GitHub
parent 79f35133f0
commit 4f0fb36e6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -55,5 +55,6 @@ description: |
| `a+` | Match 1 or more |
| `a?` | Match 0 or 1 |
| `a{5}` | Match exactly 5 |
| `a{,3}` | Match up to 3 |
| `a{3,}` | Match 3 or more |
| `a{1,3}` | Match between 1 and 3 |