在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