c语言必备的字符串函数
时间: 2023-07-15 13:08:51 浏览: 90
c语言字符串函数
可以使用循环遍历字符串的每个字符,如果该字符不是*号,则将其添加到一个新的字符串中,最终返回新的字符串即可。具体实现如下:
```python
def remove_star(s):
new_s = ''
for c in s:
if c != '*':
new_s += c
return new_s
```
使用示例:
```python
s = 'a*b*c*d'
new_s = remove_star(s)
print(new_s) # 输出:abcd
```
阅读全文