Answers for "replace all multiple spaces with single space java"

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 all multiple spaces with single space java"

Python Answers by Framework

Browse Popular Code Answers by Language