Answers for "replace multiple spaces in string"

4

replace multi spaces with single space

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

Code answers related to "replace multiple spaces in string"

Python Answers by Framework

Browse Popular Code Answers by Language