This question already has answers here:
Substitute multiple whitespace with single whitespace in Python [duplicate]
(3个答案)
可能重复:
Substitute multiple whitespace with single whitespace in Python
试图找出如何编写给定字符串的正则表达式:
我可以把它变成
其中空白被规范化为一个空格
有什么想法吗?非常感谢
(3个答案)
可能重复:
Substitute multiple whitespace with single whitespace in Python
试图找出如何编写给定字符串的正则表达式:
"hi this is a test"
我可以把它变成
"hi this is a test"
其中空白被规范化为一个空格
有什么想法吗?非常感谢
最佳答案
import re
re.sub("\s+"," ",string)
10-07 23:38