您好,登錄后才能下訂單哦!
小編給大家分享一下python中使用replace替換多個字符的方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討方法吧!
python中使用replace替換多個字符的方法:
1、使用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
2、在replace()函數中使用正則替換多個字符
//定義一個數組 let str = [[1],[2],[3],[4]]; //先轉換成JSON字符串 let str2 = JSON.stringify(str); //在對該字符串進行字符替換,在這里我們將所有中括號都替換成空 console.log(str2.replace(/\[|]/g,'')); //這樣就完成了多個字符的替換
看完了這篇文章,相信你對python中使用replace替換多個字符的方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。