Python convert multiple spaces to single space

Code examples

4
0

remove multiple space python

import re
re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
2
0

replace multiple spaces with single space python

' '.join(myString.split())
0
0

converting double spaces int single spaces python

#converting double spaces into single spaces
df["combined"]=df["combined"].replace('\s+', ' ', regex=True)

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................