let testStr = "Повторить, Повторить, Повторить";Чтобы искать или извлекать шаблон более одного раза, вы можете использовать флаг
let ourRegex = / Repeat /;
testStr.match (ourRegex);
// Возвращает ["Повторить"]
g
. пусть repeatRegex = / Repeat / g;
testStr.match (repeatRegex);
// Возвращает ["Повторить", "Повторить", "Повторить"]
starRegex
, find and extract both "Twinkle"
words from the string twinkleStar
.
Note/search/gi
starRegex
should use the global flag g
testString: assert(starRegex.flags.match(/g/).length == 1);
- text: Your regex starRegex
should use the case insensitive flag i
testString: assert(starRegex.flags.match(/i/).length == 1);
- text: Your match should match both occurrences of the word "Twinkle"
testString: assert(result.sort().join() == twinkleStar.match(/twinkle/gi).sort().join());
- text: Your match result
should have two elements in it.
testString: assert(result.length == 2);
```