Files
30-seconds-of-code/snippets/js/s/compact-whitespace.md
2023-05-07 16:07:29 +03:00

22 lines
524 B
Markdown

---
title: Compact whitespaces
type: snippet
language: javascript
tags: [string,regexp]
cover: travel-mug-1
dateModified: 2020-10-18T23:04:45+03:00
---
Compacts whitespaces in a string.
- Use `String.prototype.replace()` with a regular expression to replace all occurrences of 2 or more whitespace characters with a single space.
```js
const compactWhitespace = str => str.replace(/\s{2,}/g, ' ');
```
```js
compactWhitespace('Lorem Ipsum'); // 'Lorem Ipsum'
compactWhitespace('Lorem \n Ipsum'); // 'Lorem Ipsum'
```