広告
説明
Python文字列メソッドreplace()は、古いものが新しいものに置き換えられた文字列。オプションで、置き換えの数を最大に制限します。
構文
以下は、replace()メソッドの構文です-
str.replace(old, new)
パラメータ
-
old-これは置き換えられる古い部分文字列です。
-
new-これは新しい部分文字列であり、古い部分文字列を置き換えます。
-
max-このオプションの引数maxを指定すると、最初のカウントオカレンスのみが置き換えられます。
戻り値
このメソッドは、すべての部分文字列oldがnewに置き換えられた文字列のコピーを返します。オプションの引数maxを指定すると、最初のカウントオカレンスのみが置き換えられます。
例
次の例は、replace()メソッドの使用法を示しています。
#!/usr/bin/pythonstr = "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 stringthwas was string example....wow!!! thwas is really string
python_strings.htm
広告