We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c331e44 commit 8a0058dCopy full SHA for 8a0058d
9-regular-expressions/11-regexp-groups/article.md
@@ -18,7 +18,7 @@ Without parentheses, the pattern `pattern:go+` means `subject:g` character, foll
18
Parentheses group characters together, so `pattern:(go)+` means `match:go`, `match:gogo`, `match:gogogo` and so on.
19
20
```js run
21
-alert( 'Gogogo now!'.match(/(go)+/i) ); // "Gogogo"
+alert( 'Gogogo now!'.match(/(go)+/ig) ); // "Gogogo"
22
```
23
24
### Example: domain
0 commit comments