Answers for "python regex replace multiple spaces with one"

4

remove multiple space python

import re
re.sub(' +', ' ', 'The     quick brown    fox')
'The quick brown fox'
Posted by: Guest on August-05-2020
0

replace multiple spaces with single space python

' '.join(myString.split())
Posted by: Guest on July-11-2020

Code answers related to "python regex replace multiple spaces with one"

Python Answers by Framework

Browse Popular Code Answers by Language