采用
re.sub
import reregex = re.compile('[^a-zA-Z]')#First parameter is the replacement, second parameter is your input stringregex.sub('', 'ab3d*E')#Out: 'abdE'或者,如果您只想删除一组特定的字符(因为输入中可以使用撇号…)
regex = re.compile('[,.!?]') #etc.
采用
re.sub
import reregex = re.compile('[^a-zA-Z]')#First parameter is the replacement, second parameter is your input stringregex.sub('', 'ab3d*E')#Out: 'abdE'或者,如果您只想删除一组特定的字符(因为输入中可以使用撇号…)
regex = re.compile('[,.!?]') #etc.