2018-09-30 23:01:58 +01:00
---
id: 587d7db8367417b2b2512ba3
title: Match Whitespace
challengeType: 1
2019-08-05 09:17:33 -07:00
forumTopicId: 301359
2018-09-30 23:01:58 +01:00
---
## Description
<section id='description'>
The challenges so far have covered matching letters of the alphabet and numbers. You can also match the whitespace or spaces between letters.
You can search for whitespace using <code>\s</code>, which is a lowercase <code>s</code>. This pattern not only matches whitespace, but also carriage return, tab, form feed, and new line characters. You can think of it as similar to the character class <code>[ \r\t\f\n\v]</code>.
2019-05-17 06:20:30 -07:00
```js
let whiteSpace = "Whitespace. Whitespace everywhere!"
let spaceRegex = /\s/g;
whiteSpace.match(spaceRegex);
// Returns [" ", " "]
```
2018-09-30 23:01:58 +01:00
</section>
## Instructions
<section id='instructions'>
Change the regex <code>countWhiteSpace</code> to look for multiple whitespace characters in a string.
</section>
## Tests
<section id='tests'>
```yml
2018-10-04 14:37:37 +01:00
tests:
- text: Your regex should use the global flag.
2019-07-24 02:32:04 -07:00
testString: assert(countWhiteSpace.global);
- text: Your regex should use the shorthand character <code>\s</code> to match all whitespace characters.
testString: assert(/\\s/.test(countWhiteSpace.source));
2018-10-04 14:37:37 +01:00
- text: Your regex should find eight spaces in <code>"Men are from Mars and women are from Venus."</code>
2019-07-24 02:32:04 -07:00
testString: assert("Men are from Mars and women are from Venus.".match(countWhiteSpace).length == 8);
2018-10-04 14:37:37 +01:00
- text: 'Your regex should find three spaces in <code>"Space: the final frontier."</code>'
2019-07-27 21:16:04 -07:00
testString: 'assert("Space: the final frontier.".match(countWhiteSpace).length == 3);'
2018-10-04 14:37:37 +01:00
- text: Your regex should find no spaces in <code>"MindYourPersonalSpace"</code>
2019-07-24 02:32:04 -07:00
testString: assert("MindYourPersonalSpace".match(countWhiteSpace) == null);
2018-09-30 23:01:58 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
let sample = "Whitespace is important in separating words";
let countWhiteSpace = /change/; // Change this line
let result = sample.match(countWhiteSpace);
```
</div>
</section>
## Solution
<section id='solution'>
```js
2019-01-24 15:23:07 -05:00
let sample = "Whitespace is important in separating words";
let countWhiteSpace = /\s/g;
let result = sample.match(countWhiteSpace);
2018-09-30 23:01:58 +01:00
```
2019-07-18 08:24:12 -07:00
2018-09-30 23:01:58 +01:00
</section>