#Python での replace の使用法は何ですか?
Python replace() メソッドは、文字列内の古い (古い文字列) を新しい (新しい文字列) に置き換えます。3 番目のパラメータ max が指定されている場合、最大回数を超えて置き換えられません。
#replace() メソッドの構文:
str.replace(old, new[, max])
パラメータ:
old -- 置換される部分文字列。 new – 古い部分文字列を置き換えるために使用される新しい文字列。 max -- オプションの文字列。max 回以下で置換されます。戻り値:
文字列内の古い (古い文字列) を返し、新しい (新しい) 文字列に置き換えます。 string)、3 番目のパラメータ 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のreplaceの使い方は何ですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。