본문 바로가기

업무 자동화

Python 정규표현식 - 특수문자 제거

반응형

 

 

1
2
3
4
5
6
7
8
9
10
11
import re
 
def cleanText(readData):
 
    #텍스트에 포함되어 있는 특수 문자 제거
 
    text = re.sub('[-=+,#/\?:^$.@*\"※~&%ㆍ!』\\‘|\(\)\[\]\<\>`\'…》]','', readData)
 
    return text
 
thisdata = cleanText(thisdata)
cs

 

반응형