在Python中,可以使用replace()
方法來替換字符串中的指定子字符串。replace()
方法的語法如下:
str.replace(old, new, count)
其中,old
是要被替換的子字符串,new
是用來替換的新字符串,count
是可選參數,用于指定替換的次數。如果不指定count
參數,則所有匹配的子字符串都會被替換。
示例代碼如下:
str = "Hello, World!"
new_str = str.replace("Hello", "Hi")
print(new_str) # 輸出: Hi, World!
如果想要替換所有匹配的子字符串,可以不指定count
參數:
str = "apple, apple, orange, apple"
new_str = str.replace("apple", "banana")
print(new_str) # 輸出: banana, banana, orange, banana