Files
2018-10-16 21:32:40 +05:30

959 B

title
title
Match All Letters and Numbers

The Problem Use the shorthand character class \w to count the number of alphanumeric characters in various quotes and strings.

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

Match All Letters and Numbers

This is a stub. Help our community expand it.

This quick style guide will help ensure your pull request gets accepted.