string = '[/ \ : * " < > | ?]+' 使用 re.sub函数将name里面含有string的符号替换成空格
时间: 2024-04-15 21:28:07 浏览: 163
利用subs函数对符号表达的变量进行替换求值
4星 · 用户满意度95%
你可以使用re.sub函数将name字符串中含有string定义的符号替换为空格。下面是一个示例代码:
```python
import re
name = 'Hello/World:This*is"a<test>|string?'
string = '[/ \ : * " < > | ?]+'
result = re.sub(string, ' ', name)
print(result) # 输出: Hello World This is a test string
```
在上述示例中,使用re.sub函数将name字符串中匹配到的符号替换为空格。通过使用正则表达式模式`[/ \ : * " < > | ?]+`来匹配多个连续的特定符号。然后将匹配到的符号替换为一个空格。最终输出结果为"Hello World This is a test string"。
阅读全文