Logo

Programming-Idioms

  • Python
  • JS
  • Php

Idiom #219 Replace multiple spaces with single space

Create the string t from the value of string s with each sequence of spaces replaced by a single space.

Explain if only the space characters will be replaced, or the other whitespaces as well: tabs, newlines.

$t = preg_replace('/\s+/', ' ', $s);

replaces all whitespace
$t = $s;
do $t = str_replace('  ', ' ', $t, $count); while($count);

only spaces are handled

might not be very efficient, but does not use regexes
from re import split
t = ' '.join(split(r'\s{2,}', s))
t: str = " ".join(s.split())

Splits s into a list based on whitespace, then joins them together again
from re import split
t = ' '.join(split(' {2,}', s))
import re
t = re.sub(' +', ' ', s)

Only replaces spaces.
let t = s.replaceAll(/\s{2,}/g, '')
let t = s.replaceAll(/ {2,}/g, '')
let t = s.replace(/\s+/g, ' ');

This replaces any sequence of whitespaces with a single space.
(def t (clojure.string/replace s #"\s+" " "))

New implementation...