2018-09-30 23:01:58 +01:00
---
id: 587d7db9367417b2b2512ba4
title: Match Non-Whitespace Characters
challengeType: 1
2019-07-31 11:32:23 -07:00
forumTopicId: 18210
2021-01-13 03:31:00 +01:00
dashedName: match-non-whitespace-characters
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
You learned about searching for whitespace using `\s` , with a lowercase `s` . You can also search for everything except whitespace.
Search for non-whitespace using `\S` , which is an uppercase `s` . This pattern will not match whitespace, carriage return, tab, form feed, and new line characters. You can think of it being similar to the character class `[^ \r\t\f\n\v]` .
2019-05-17 06:20:30 -07:00
```js
let whiteSpace = "Whitespace. Whitespace everywhere!"
let nonSpaceRegex = /\S/g;
whiteSpace.match(nonSpaceRegex).length; // Returns 32
```
2020-11-27 19:02:05 +01:00
# --instructions--
Change the regex `countNonWhiteSpace` to look for multiple non-whitespace characters in a string.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
Your regex should use the global flag.
```js
assert(countNonWhiteSpace.global);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
Your regex should use the shorthand character `\S` to match all non-whitespace characters.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(/\\S/.test(countNonWhiteSpace.source));
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
Your regex should find 35 non-spaces in `"Men are from Mars and women are from Venus."`
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(
'Men are from Mars and women are from Venus.'.match(countNonWhiteSpace)
.length == 35
);
```
Your regex should find 23 non-spaces in `"Space: the final frontier."`
```js
assert('Space: the final frontier.'.match(countNonWhiteSpace).length == 23);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
Your regex should find 21 non-spaces in `"MindYourPersonalSpace"`
```js
assert('MindYourPersonalSpace'.match(countNonWhiteSpace).length == 21);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
let sample = "Whitespace is important in separating words";
let countNonWhiteSpace = /change/; // Change this line
let result = sample.match(countNonWhiteSpace);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
2019-05-03 03:05:26 -07:00
let sample = "Whitespace is important in separating words";
let countNonWhiteSpace = /\S/g; // Change this line
let result = sample.match(countNonWhiteSpace);
2018-09-30 23:01:58 +01:00
```