如何用python中的正则表达式替换一个空格?

时间:2011-09-16 04:26:19

标签: python regex replace removing-whitespace

例如:

T h e   t e x t   i s   w h a t   I   w a n t   t o   r e p l a c e

我想要这样的结果:

The text is what I want to replace

我尝试用shell,sed,

 echo 'T h e   t e x t   i s   W h a t   I  w a n t   r e p l a c e'|sed -r "s/(([a-zA-Z])\s){1}/\2/g"|sed 's/\  / /g'

它成功了。 但我不知道如何在 python 中替换它。有人能帮助我吗?

3 个答案:

答案 0 :(得分:5)

如果您只想转换每个字符之间有空格的字符串:

>>> import re
>>> re.sub(r'(.) ', r'\1', 'T h e   t e x t   i s   w h a t   I   w a n t   t o  r e p l a c e')
'The text is what I want to replace'

或者,如果要删除所有单个空格并将空格替换为仅一个空格:

>>> re.sub(r'( ?) +', r'\1', 'A B  C   D')
'AB C D'

答案 1 :(得分:3)

只是为了踢,这是一个使用字符串操作的非正则表达式解决方案:

>>> text = 'T h e   t e x t   i s   w h a t   I   w a n t   t o   r e p l a c e'
>>> text.replace(' ' * 3, '\0').replace(' ', '').replace('\0', ' ')
'The text is what I want to replace'

(根据评论,我将_更改为\0(空字符)。)

答案 2 :(得分:1)

只是为了好玩,还有两种方法可以做到。这两个都假设在你想要的每个角色之后都有一个空格。

>>> s = "T h e   t e x t   i s   w h a t   I   w a n t   t o   r e p l a c e "
>>> import re
>>> pat = re.compile(r'(.) ')
>>> ''.join(re.findall(pat, s))
'The text is what I want to replace'

使用字符串切片更简单:

>>> s[::2]
'The text is what I want to replace'