* 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
347 B
347 B
title
title |
---|
Match All Letters and Numbers |
Match All Letters and Numbers
Solutions
Solution 1 (Click to Show/Hide)
let quoteSample = "The five boxing wizards jump quickly.";
let alphabetRegexV2 = /\w/gi; // Change this line
let result = quoteSample.match(alphabetRegexV2).length;