--- title: Match All Letters and Numbers --- # Match All Letters and Numbers --- ## Solutions
Solution 1 (Click to Show/Hide) ```js let quoteSample = "The five boxing wizards jump quickly."; let alphabetRegexV2 = /\w/gi; // Change this line let result = quoteSample.match(alphabetRegexV2).length; ```