用正则表达式将所有的符号替换为空格
时间: 2023-10-25 20:08:53 浏览: 101
去空格正则表达式
好的,可以使用如下的正则表达式将所有符号替换为空格:
```
import re
text = "Hello! How are you doing today? I'm feeling great, thanks for asking."
processed_text = re.sub(r'[^\w\s]', ' ', text)
print(processed_text)
```
输出结果为:
```
Hello How are you doing today I m feeling great thanks for asking
```
其中,正则表达式 `[^\w\s]` 匹配非单词字符和非空白字符,即符号。`re.sub()` 函数将所有符号替换为空格,从而得到处理后的文本。
阅读全文