字符串中的某子串全部替换为新子串
时间: 2023-12-24 19:03:21 浏览: 174
在Python中实现替换字符串中的子串的示例
您可以使用字符串函数,例如Python中的replace()函数。使用该函数即可将一个字符串中的某个子串全部替换为新的子串。示例代码如下:
```python
str1 = "I love apples."
new_str = str1.replace("apples", "oranges")
print(new_str)
#输出结果为“I love oranges.”
```
希望对您有所帮助。
阅读全文