Merge pull request #1234 from ashur1k/patch-1

Update regexp.md
This commit is contained in:
Rico Sta. Cruz 2019-12-24 22:07:42 +11:00 committed by GitHub
commit 7010476b4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -49,9 +49,12 @@ description: |
### Groups ### Groups
| Pattern | Description | | Pattern | Description |
| ------- | ------------- | | --------- | ------------------------------ |
| `(abc)` | Capture group | | `(abc)` | Capture group |
| `(a|b)` | Match `a` or `b` |
| `(?:abc)` | Match `abc`, but don't capture |
### Quantifiers ### Quantifiers