python怎麼替換字串的內容

發布: 2019-07-08 09:06:25
原創
13489 人瀏覽過

python怎麼替換字串的內容

Python中replace()函數把字串中的old(舊字串) 替換成new(新字串),如果指定第三個參數max,則替換不超過max 次。

replace()函數語法:

str.replace(old, new[, max])
登入後複製

參數:old -- 將被取代的子字串。 new -- 新字串,用於替換old子字串。 max -- 可選字串, 替換不超過 max 次。

傳回值:傳回字串中的 old(舊字串) 替換成 new(新字串)後產生的新字串,如果指定第三個參數max,則替換不超過 max 次。

以下實例展示了replace()函數的使用方法:

實例:

#!/usr/bin/python
str = "this is string example....wow!!! this is really string";
print str.replace("is", "was");
print str.replace("is", "was", 3);
登入後複製

以上實例輸出結果如下:

thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string
登入後複製

更多Python相關技術文章,請造訪Python教學欄位進行學習!

以上是python怎麼替換字串的內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板