[Python][TIP] python 문자열(String) 특수 문자 제거
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 [초보끼리]
'Python > Python 프로그래밍' 카테고리의 다른 글
파이썬을 이용한 selenium 사용법 및 동적 웹 스크래핑 (0) | 2021.03.27 |
---|---|
회사 프록시 때문에 pip, npm을 통해 제대로 패키지 다운로드가 안 될 때 (0) | 2021.03.27 |
파이썬 웹 스크래핑할 때 이거 쓰세요. 최고의 파이썬 웹 스크래핑 솔루션 scrapy (0) | 2021.03.27 |
[Python, 파이썬] Call by assignment, mutable, immutable, 파이썬 복사(Python Copy) (0) | 2021.03.27 |
[Python][TIP]virtualenv 개발 환경 구축 (0) | 2021.01.06 |
[Python][TIP] 소수점 중 불필요한 0 제거 하기 (0) | 2021.01.06 |
[Python][TIP] python map function (map 함수 사용하기) (0) | 2021.01.06 |
[Python][TIP] python naming convention, naming rule (0) | 2021.01.06 |