diff --git a/regexp.md b/regexp.md index 3afbf1c26..d75195892 100644 --- a/regexp.md +++ b/regexp.md @@ -49,9 +49,12 @@ description: | ### Groups -| Pattern | Description | -| ------- | ------------- | -| `(abc)` | Capture group | +| Pattern | Description | +| --------- | ------------------------------ | +| `(abc)` | Capture group | +| `(a|b)` | Match `a` or `b` | +| `(?:abc)` | Match `abc`, but don't capture | + ### Quantifiers