Python中的字符串replace()方法用于將字符串中的某個子字符串替換為另一個字符串。它的語法如下:
string.replace(old, new[, count])
其中,old
表示要被替換的子字符串,new
表示用于替換的新字符串。可選參數count
表示替換的次數,如果不指定該參數,則默認替換所有出現的子字符串。
下面是一些使用示例:
string = "Hello, World!"
# 將字符串中的逗號替換為句號
new_string = string.replace(",", ".")
print(new_string) # Output: Hello. World!
# 替換所有出現的o為a
new_string = string.replace("o", "a")
print(new_string) # Output: Hella, Warld!
# 替換前兩個出現的l為z
new_string = string.replace("l", "z", 2)
print(new_string) # Output: Hezzo, World!
注意:replace()
方法返回一個新的字符串,原始字符串不會受到改變。如果需要替換原始字符串,可以將新字符串賦值給原始字符串變量。