Files
30-seconds-of-code/snippets/remove-whitespace.md
Angelos Chalaris 61200d90c4 Kebab file names
2023-04-27 21:58:35 +03:00

493 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Remove whitespaces string,regexp tropical-bike 2020-10-13T09:37:17+03:00 2020-11-03T21:46:13+02:00

Returns a string with whitespaces removed.

  • Use String.prototype.replace() with a regular expression to replace all occurrences of whitespace characters with an empty string.
const removeWhitespace = str => str.replace(/\s+/g, '');
removeWhitespace('Lorem ipsum.\n Dolor sit amet. ');
// 'Loremipsum.Dolorsitamet.'