码迷,mamicode.com
首页 > 编程语言 > 详细

Python3 去除空格

时间:2019-01-13 15:23:51      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:正则表达   sub   spl   空格替换   htm   https   [1]   abc   code   

1 去除两端空格(strip())

a.去除左端空格 lstrip()

str0='abcdef'
str1='  abcdef'
print(str0)
print(str1.lstrip())

b.去除右端空格 rstrip()

str0='abcdef  '
str1='abcdef  '
print(str0)
print(str1.rstrip())

c.去除两端空格 strip()

str0='  abcdef  '
str1='  abcdef  '
print(str0)
print(str1.strip())

2 空格替换(replace() 推荐使用)

str0='  a b c d e f  '
str1='  a b c d e f  '
print(str0)
print(str1.replace(' ',''))

3 重新组合替换空格(使用split分割字符,使用join重新组合,效率低)

str0='  a b c d e f  '
str1='  a b c d e f  '
print(str0)
print(''.join(str1.split()))

4 正则表达式去空格(用sub()方法替换)

import re
str0='  a b c d e f  '
str1='  a b c d e f  '
print(str0)print(re.sub(' ','',str1))

[1] https://www.cnblogs.com/146xwq/p/9684891.html

Python3 去除空格

标签:正则表达   sub   spl   空格替换   htm   https   [1]   abc   code   

原文地址:https://www.cnblogs.com/TianchiLiu/p/10262598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!