1
0
mirror of https://github.com/onkelbeh/cheatsheets.git synced 2026-08-15 21:44:51 +02:00

Merge branch 'pr-975'

This commit is contained in:
Rico Sta. Cruz
2019-03-24 07:35:57 +08:00

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 |