Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

822 B

title
title
Find More Than the First Match

Find More Than the First Match


Problem Explanation

If you have multiple occurrences of your regex inside a string, you can get the match() function to detect all of them. Simply tag along the g flag at the end of your regex! That's what you're doing in this challenge.


Hints

Hint 1

Change the regex so that it detects the word "twinkle".

Hint 2

You can add multiple tags to a regex! For example, a regex that detects multiple occurrences, and detects regardless of case, can be structured like gi or ig.


Solutions

Solution 1 (Click to Show/Hide)
let twinkleStar = "Twinkle, twinkle, little star";
let starRegex = /twinkle/gi;
let result = twinkleStar.match(starRegex);