DS串应用--串替换
时间: 2023-11-02 14:06:07 浏览: 146
字符串替换
好的,DS串应用--串替换,我来给你讲一下。
串替换就是将一个串中的某个子串替换成另一个子串。具体实现可以使用字符串匹配算法,找到需要替换的子串的位置,然后进行替换。
下面是一个简单的示例代码:
```python
def replace_str(s, old_str, new_str):
"""
将字符串s中的old_str替换成new_str
"""
index = s.find(old_str)
while index != -1:
s = s[:index] + new_str + s[index+len(old_str):]
index = s.find(old_str)
return s
```
这里使用了字符串的 find 方法来查找需要替换的子串的位置,然后使用字符串切片和拼接来进行替换。
阅读全文