如何通过正则表达式清除字符串所有空格?
str_demo="1 2 3 4[这里是多个空格] 56"
通过正则表达式清除所有空格
输出字符串为str_demo="123456"
回答:
给一个 js 的参考代码(python 应该类似):'12 3 5 '.replace(/ */g, '')
回答:
import redef foo():
str_demo="1 2 3 4[这里是多个空格] 56"
str_new = re.sub(r' *', "", str_demo)
print(str_new)
foo()
回答:
'1 2 3 4 56'.replace(/\s/g,'')
回答:
>>> str_demo="1 2 3 4 56">>> new_str = str_demo.replace(" ", "")
>>> new_str
'123456'
以上是 如何通过正则表达式清除字符串所有空格? 的全部内容, 来源链接: utcz.com/p/938561.html