python學習之字串刪除特定字元

2021-10-05 07:25:09 字數 910 閱讀 2222

語法

str

.replace(old, new[

,max

])

樣例

str

="this is string example....wow!!! this is really string"

;print

(str

.replace(

"is"

,"was"))

print

(str

.replace(

"is"

,"was",3

))print

(str

)

執行結果

語法

re.sub(pattern, repl, string, count=

0, flags=

0)

樣例

在使用sub函式之前,需要應用re

import  re

str=

"this is string example....wow!!! this is really string"

print

(re.sub(

"is"

,"was"

,str

))

執行結果如下

無論是replace函式還是re.sub函式,都是不改變原來的字串,返回值才是替換的字串。所以,如果要使用替換的字串,就需要將返回值賦值給乙個變數。

Python學習之字串

字串或串 string 是由數字 字母 下劃線組成的一串字元。一般記為 s a1a2 an n 0 它是程式語言中表示文字的資料型別。python的字串列表有2種取值順序 如果你的實要取得一段子串的話,可以用到變數 頭下標 尾下標 就可以擷取相應的字串,其中下標是從0開始算起,可以是正數或負數,下標...

python學習之字串

1 賦值 msg studying python now msg1 xu te t為4個空格 msg3 aaa qq.com msg4 d1 2 字串常用方法 print msg.capitalize 首字母大寫 print msg.center 40,按40個字元寬度居中顯示字串,前後用 填充 p...

Python 刪除字串

1 strip lstrip rstrip 方法,在沒有引數時,分別能刪除字串開頭或結尾 左邊的 右邊的空格,傳入引數時,分別能刪除字串開頭或結尾 左邊的 右邊的相關字串。whitespace stripping s hello world n s.strip hello world s.lstri...