匹配字母表
let quoteSample = 'w3cschool is very goooooooooooooooooood.';
let alphabetRegex = /[a-z]/gi;// Change this line
let result = quoteSample.match(alphabetRegex);
let quoteSample = 'w3cschool is very goooooooooooooooooood.';
let alphabetRegex = /[a-z]/gi;// Change this line
let result = quoteSample.match(alphabetRegex);