DEV Community

Cover image for 1 line of code: How to replace multiple spaces with one space
Martin Krause
Martin Krause

Posted on

6

1 line of code: How to replace multiple spaces with one space

const multiToSingleSpace = str => str.replace(/  +/g, " ");
Enter fullscreen mode Exit fullscreen mode

Returns the string with multiple spaces reduced to one space

The repository & npm package

You can find the all the utility functions from this series at github.com/martinkr/onelinecode
The library is also published to npm as @onelinecode for your convenience.

The code and the npm package will be updated every time I publish a new article.


Follow me on Twitter: @martinkr and consider to buy me a coffee

Photo by zoo_monkey on Unsplash


Subscribe to the weekly modern frontend development newsletter


Sentry blog image

How I fixed 20 seconds of lag for every user in just 20 minutes.

Our AI agent was running 10-20 seconds slower than it should, impacting both our own developers and our early adopters. See how I used Sentry Profiling to fix it in record time.

Read more

Top comments (1)

Collapse
 
adam_cyclones profile image
Adam Crockett πŸŒ€ β€’

So I have always used

/\s+/
Enter fullscreen mode Exit fullscreen mode

It's good to know the escape character for whitespace \s or tabs \t

I think it would be perfect of only 2 or more where matched {2,} something like that

nextjs tutorial video

Youtube Tutorial Series πŸ“Ί

So you built a Next.js app, but you need a clear view of the entire operation flow to be able to identify performance bottlenecks before you launch. But how do you get started? Get the essentials on tracing for Next.js from @nikolovlazar in this video series πŸ‘€

Watch the Youtube series

πŸ‘‹ Kindness is contagious

Please leave a ❀️ or a friendly comment on this post if you found it helpful!

Okay