sql去掉只含有标点符号的文本
时间: 2023-06-04 10:03:57 浏览: 201
基于python实现自然语言处理敏感文本识别与分类源码+数据库sql.zip
可以先用正则表达式匹配出只含有标点符号的文本,然后删除即可。下面是一个示例代码:
import re
text = "Hello, world!... ?"
# 使用正则表达式匹配只含有标点符号的文本
punctuation_pattern = r"^[\s\W]+$"
punctuation_text = re.findall(punctuation_pattern, text)
# 删除只含有标点符号的文本
for punctuation in punctuation_text:
text = text.replace(punctuation, "")
print(text)
输出结果为:"Hello, world!"。
阅读全文