当前位置: 首页 > 图灵资讯 > 行业资讯> python删除str中特定字符的方法

python删除str中特定字符的方法

来源:图灵python
时间: 2024-07-16 10:20:18

1、strip()删除字符串首尾的多余字符串

#删除字符串中多余字符的字符
defstring_remove():
str1='abc\n'
printstr1.strip()#abc

str2='----abcdf++++'
printstr2.strip('-+')#abcdf

2、replace函数,删除字符串中的所有字符串

ss='oldoldstring'
ret=ss.replace('old','new',1)
print(ret)

3、同时删除多个字符串的sub函数,使用正则表达式

str2='\nabc\nwrt22\t66t'#删除字符串中的所有\n,\t
importre
print(re.sub('[\n\t]','',str2)#abcwrt2666

以上是python删除str中特定字符的方法,希望对大家有所帮助。更多Python学习指导:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。