python清除字符串中间空格的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python清除字符串中间空格的方法相关的知识,希望对你有一定的参考价值。

1、使用字符串函数replace

>>> a = ‘hello world‘

>>> a.replace(‘ ‘, ‘‘)
‘helloworld‘
  • 1
  • 2
  • 3
  • 4

看上这种方法真的是很笨。

2、使用字符串函数split

>>> a = ‘‘.join(a.split())

>>> print(a)
helloworld
  • 1
  • 2
  • 3
  • 4

3、使用正则表达式

>>> import re
>>> strinfo = re.compile()

>>> strinfo = re.compile(‘ ‘)

>>> b = strinfo.sub(‘‘, a)
>>> print(b)
helloworld

以上是关于python清除字符串中间空格的方法的主要内容,如果未能解决你的问题,请参考以下文章

Java中去除字符串中所有空格的几种方法

Excel处理数据与Python处理数据方法对比

python几种去掉字符串中间空格的方法

python去除字符串中间空格的方法

JS中如何去除字符串的空格

JAVA中如何去除字符串前后的全角空格(当中保留)?