编写程序实现在字符串s中删除字符串c的功能不考虑去掉字字符串c后形成的系统字符串c
时间: 2023-12-27 16:02:50 浏览: 79
以下是Python的实现:
```python
def remove_string(s, c):
return s.replace(c, '')
```
使用示例:
```python
s = 'hello world'
c = 'l'
result = remove_string(s, c)
print(result) # 'heo word'
```
阅读全文