Regular Expressions - Match Everything But Letters and Numbers - Free Code Camp

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

Despite being a fairly easy exercise (compare to other ones that are extremelly difficult), it's always good to check your videos to see further examples!

LearnEnglishwithKevin
Автор

Thanks Mr. Ian and a big thanks as always for your extra added examples let quoteSample = "The five boxing wizards jump quickly.";
let nonAlphabetRegex = /\W/g;
let result =
console.log(result);

zken