regexp.md - add {,x} character class
This commit is contained in:
parent
79f35133f0
commit
4f0fb36e6d
|
@ -55,5 +55,6 @@ description: |
|
||||||
| `a+` | Match 1 or more |
|
| `a+` | Match 1 or more |
|
||||||
| `a?` | Match 0 or 1 |
|
| `a?` | Match 0 or 1 |
|
||||||
| `a{5}` | Match exactly 5 |
|
| `a{5}` | Match exactly 5 |
|
||||||
|
| `a{,3}` | Match up to 3 |
|
||||||
| `a{3,}` | Match 3 or more |
|
| `a{3,}` | Match 3 or more |
|
||||||
| `a{1,3}` | Match between 1 and 3 |
|
| `a{1,3}` | Match between 1 and 3 |
|
||||||
|
|
Loading…
Reference in New Issue