python刪除str中特定字符的方法
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\t666\t'#刪除字符串中的所有\n,\t
importre
print(re.sub('[\n\t]','',str2))#abcwrt22666
以上就是python刪除str中特定字符的方法,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。