python中的strip()可以去除頭尾指定字元
ss =
'我還有更多python的學習資料,無法一一放出,\n **qq裙688244617,免費自取\n\n\n'
print
(ss.strip(
'\n'
))
結果:
1 我還有更多python的學習資料, 無法一一放出,可以看到只能刪除頭尾指定字元。2 **qq裙688244617, 免費自取
想要去除中間字元,可以使用replace()函式
ss =
'我還有更多python的學習資料,無法一一放出,\n **qq裙688244617,免費自取\n\n\n'
print
(ss.replace(
'\n',''
))
結果:
我還有更多python的學習資料,無法一一放出,**qq裙688244617,免費自取note:
strip(str)
基本用法:ss.strip(rmstr)
ss.strip()引數為空時,預設去除ss字串中頭尾\r, \t, \n, 空格等字元
ss.lstrip()刪除ss字串開頭處的指定字元,ss.rstrip()刪除ss結尾處的指定字元
replace(old, new[, max])
基本用法:ss.replace(rgexp, replacetext, max)
rgexp是指正規表示式模式或可用標誌的正規表示式物件,也可以是 string 物件或文字;replacetext是乙個string 物件或字串文字;max是乙個數字。對於乙個物件,在物件的每個rgexp都替換成replacetext,從左到右最多max次。
Python 查詢字串中指定字串索引
在字串中查詢符合要求的字串索引 str 15 5669 3566 5656 查詢出現的第乙個符合要求字串的索引 first index str.find 56 3 查詢出現的最後乙個符合要求字串的索引 last index str.rfind 56 15 查詢所有符合要求的字串索引 all inde...
python統計字串中指定字元出現次數的方法
本文例項講述了python統www.cppcns.com計字串中指定字元出現次數的方法。分享給大家供大家參考。具體如下 python統計字串中qtfzow指定字元出現的次數,例如想統計字串中空格的數量 s count,the number www.cppcns.com spaces.print s....
Python 替換檔案中指定字串
1 將替換後的內容儲存到新檔案中 import sys import re f1 open home wuzz 11.txt r f2 open home wuzz 12.txt w str1 r hello str2 r hi for ss in f1.readlines tt re.sub st...