diff --git a/regexp.md b/regexp.md index 183a73188..b84f3aab8 100644 --- a/regexp.md +++ b/regexp.md @@ -47,9 +47,12 @@ description: | ### Groups -| Pattern | Description | -| ------- | ------------- | -| `(abc)` | Capture group | +| Pattern | Description | +| --------- | ------------------------- | +| `(abc)` | Capture group | +| `(a|b)` | Match either a or b | +| `(?:abc)` | Match everything enclosed | + ### Quantifiers