当前位置:主页 > 软件编程 > Python代码 >

python清除字符串前后空格函数的方法

时间:2020-11-18 00:47:39 | 栏目:Python代码 | 点击:

python有时候需要清除字符串前后空格,而字符本身的空格不需要清除掉,那就不能用正则re.sub来实现。

这时用到strip()函数

用法:

str = '  2014-04-21 14:10:18  '
str2 = str.strip()
str3 = re.sub(' ','',str)
 
print str2
print str3
结果如下:
>2014-04-21 14:10:18
>2014-04-2114:10:18

您可能感兴趣的文章:

相关文章