python 去除字符串中的特殊字符
时间: 2023-05-03 20:02:23 浏览: 276
Python字符串中删除特定字符的方法
使用Python可以去除字符串中的特殊字符,可以使用字符串的replace()方法或正则表达式来去除。具体方法视具体情况而定。例如,可以使用replace()方法将要去除的特殊字符替换为空字符,如下所示:
str = 'hello,world!'
new_str = str.replace('!', '') # 去除叹号
print(new_str)
输出:hello,world
也可以使用正则表达式来匹配和去除特殊字符,如下所示:
import re
str = 'hello,world!'
new_str = re.sub('[!]', '', str) # 去除叹号
print(new_str)
输出:hello,world
阅读全文