Files

21 lines
347 B
Markdown
Raw Normal View History

---
title: Match All Letters and Numbers
---
# Match All Letters and Numbers
---
## Solutions
<details><summary>Solution 1 (Click to Show/Hide)</summary>
```js
let quoteSample = "The five boxing wizards jump quickly.";
let alphabetRegexV2 = /\w/gi; // Change this line
let result = quoteSample.match(alphabetRegexV2).length;
```
</details>