python有时候需要清除字符串前后空格,而字符本身的空格不需要清除掉,那就不能用正则re.sub来实现。
这时用到strip()函数
用法:
1
2
3
4
5
6
7
8
9
|
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
|
以上这篇python清除字符串前后空格函数的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/lanbing0011/article/details/24253679