ホームページ >バックエンド開発 >Python チュートリアル >Python 3.x で部分文字列を置換するにはどうすればよいですか?
Python 3.x で部分文字列を置換する方法
概要:
Python の文字列。 replace() メソッドは Python 3.x で非推奨になりました。この記事では、Python 3 で部分文字列を置換するための新しい推奨アプローチについて説明します。
新しい方法: str.replace() を使用する
Python 2.x と同様、Python 3.x では、string.replace() の代わりに str.replace() メソッドが提供されます。同じ構文と動作に従います:
original_string.replace(old_substring, new_substring, count)
例:
文字列「Hello world」内の単語「world」を「Guido」に置き換えるには:
>>> 'Hello world'.replace('world', 'Guido') 'Hello Guido'
追加メモ:
>>> 'This is is is not is a test'.replace('is', 'are', 2) 'This are are is not is a test'
以上がPython 3.x で部分文字列を置換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。