str.strip() re.sub() --从字符串中去掉不需要的字符

本文详细介绍了如何使用Python中的str.strip(), str.lstrip(), str.rstrip(), str.replace()和re.sub()等方法来去除字符串首尾和中间的多余字符,包括空格和其他指定字符。同时,文章还展示了如何利用生成器表达式来高效地处理文件中的每一行。
摘要由CSDN通过智能技术生成

问题:从字符串的开始、结尾和中间去掉不需要的字符

1、去掉首尾的空格符:str.strip()默认去掉的是空格符
s.strip()
Out[3]: 'hello world'
s.lstrip()
Out[4]: 'hello world \n'
s.rstrip()
Out[5]: ' hello world'

将默认去掉的空格符指定为其他的字符:

t = '-----hello===='
t.strip('-')
Out[7]: 'hello===='
t.strip('-=')   # 可以指定多个字符模式
Out[8]: 'hello'

2、去掉字符串里面的空格: str.replace() re.sub()

s = 'hello     world'
s.replace('  ', '')
Out[10]: 'hello world'
import re
re.sub('\s+', ' ', s)
Out[12]: 'hello world'

3、结合生成器表达式使用: 它很高效,因为这里并没有先将数据读取到任何形式的临时列表中。只是创建一个迭代器。

with open('a.txt') as f:
    lines = (line.strip() for line in f)
for line in lines: pass
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值