「Python」replace()関数で文字列を置換するサンプル

2020年10月8日

説明
str.replace(old, new[, count])
文字列をコピーし、現れる部分文字列 old 全てを new に置換して返します。
オプション引数 count が与えられている場合、先頭から count 個の old だけを置換します。
1.文字列を指定して置換
サンプルコード
strA = 'tokyo yokohama’
strB = strA.replace('tokyo’, 'welcome’)
print(strB)

結果
welcome yokohama

2.複数の文字列を置換
strA = 'AA BB AA BB AA’
strB = strA.replace('AA’, 'JP’).replace('BB’, 'US’)
結果
JP US JP US JP

Python

Posted by arkgame