Match Letters of the Alphabet
Summary
- The hyphen character
-
can be used to define a range on the alphabet.
Final Code
let quoteSample = "The quick brown fox jumps over the lazy dog.";
let alphabetRegex = /[a-z]/gi; // Change this line
let result = quoteSample.match(alphabetRegex); // Change this line