Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
正規表現を使用して Web ページから文字列を取得しましたが、文字列の一部に別のものに置き換えたいものが含まれている場合があります。これを行うにはどうすればよいでしょうか。たとえば、私のコードは次のとおりです。
stuff = "Big and small" if stuff.find(" and ") == -1: # make stuff "Big/small" else: stuff = stuff
>>> stuff = "Big and small" >>> stuff.replace(" and ","/") 'Big/small'
replace()文字列に対してメソッドを使用します。
replace()
>>> stuff = "Big and small" >>> stuff.replace( " and ", "/" ) 'Big/small'