Link Search Menu Expand Document

Match All Letters and Numbers

Summary

  • \w is used to search for any letter or number.

Final Code

let quoteSample = "The five boxing wizards jump quickly.";
let alphabetRegexV2 = /\w/gi; // Change this line
let result = quoteSample.match(alphabetRegexV2).length;