From df11d9ed8bb48d1b8673e4f1ab4974511b8a8c24 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Tue, 15 Oct 2019 20:24:15 +1100 Subject: [PATCH] Update regexp.md --- regexp.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/regexp.md b/regexp.md index b84f3aab8..24a6519c5 100644 --- a/regexp.md +++ b/regexp.md @@ -47,11 +47,11 @@ description: | ### Groups -| Pattern | Description | -| --------- | ------------------------- | -| `(abc)` | Capture group | -| `(a|b)` | Match either a or b | -| `(?:abc)` | Match everything enclosed | +| Pattern | Description | +| --------- | ------------------------------ | +| `(abc)` | Capture group | +| `(a|b)` | Match `a` or `b` | +| `(?:abc)` | Match `abc`, but don't capture | ### Quantifiers