[Python][TIP] python 문자열(String) 특수 문자 제거

2021. 1. 6. 17:39 Python/Python 프로그래밍
sample_string = "1234567890abcdefgABCDEFG!@#$%^&*()_{}[]<>"
result_string = ""
 
for c in sample_string:
    if c.isalnum():
        result_string +=c
 
print result_string

python 에서 텍스트를 처리할 때 특수문자를 제거해야 할 때가 있습니다. 이럴 때 정규표현식 으로 처리할 수도

있지만 다음과 같이 처리할 수도 있습니다.

 

sample_string = "1234567890abcdefgABCDEFG!@#$%^&*()_{}[]<>" result_string = "" for c in sample_string: if c.isalnum(): result_string +=c print result_string

 

 

결과는 다음과 같습니다.

1234567890abcdefgABCDEFG 

[Finished in 0.2s]



출처: https://chobokkiri.tistory.com/34?category=656553 [초보끼리]