Files
30-seconds-of-code/snippets/compactWhitespace.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

510 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
compactWhitespace string,regexp,beginner 2018-12-12T19:11:33+02:00 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.
const compactWhitespace = str => str.replace(/\s{2,}/g, ' ');
compactWhitespace('Lorem    Ipsum'); // 'Lorem Ipsum'
compactWhitespace('Lorem \n Ipsum'); // 'Lorem Ipsum'