scrimba
Learn Regex
Extract Matches
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Extract Matches
Expand for more info
index.js
run
preview
console
let extractStr = "Extract the word 'coding' from this string.";
let codingRegex = /change/;
let result = extractStr;

console.log(result);
Console
index.html
-0:44