We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d603be1 commit 4bdb716Copy full SHA for 4bdb716
9-regular-expressions/11-regexp-groups/article.md
@@ -18,7 +18,7 @@
18
Скобки группируют символы вместе. Так что `pattern:(go)+` означает `match:go`, `match:gogo`, `match:gogogo` и т.п.
19
20
```js run
21
-alert( 'Gogogo now!'.match(/(go)+/i) ); // "Gogogo"
+alert( 'Gogogo now!'.match(/(go)+/ig) ); // "Gogogo"
22
```
23
24
### Пример: домен
0 commit comments