Answers for "replace multiple spaces with single space python regex"

3

replace multiple spaces with single space python

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

python replace two spaces with one

" ".join(filter(bool, mystring.split(" ")))
Posted by: Guest on July-05-2021

Code answers related to "replace multiple spaces with single space python regex"

Python Answers by Framework

Browse Popular Code Answers by Language