반응형
좌우 공백 문자와 제어 코드 문자 제거
import re
user_id = " \x08h_team \t\n" # 예 (:0x08(BackSpace), \t:Tab, \n:NewLine)
cleaned_id = re.sub(r'[\x00-\x1F\x7F]', '', user_id).strip() # 비가시 문자 제거 후 공백 제거
print('원문: "' + user_id + '"')
print('결과: "' + cleaned_id + '"')
[실행 결과]
원문: " h_team
"
결과: "h_team"
반응형
'Python 기초' 카테고리의 다른 글
파이썬, 연속된 숫자 ID 생성 함수 예제 (0) | 2024.12.17 |
---|---|
AttributeError: module 'bcrypt' has no attribute '__about__' (0) | 2024.12.12 |
시스템 운영 환경 정보 확인 with Python (1) | 2024.09.15 |
pip download 명령 (0) | 2024.06.29 |
UnicodeEncodeError: 'ascii' codec can't encode character (0) | 2024.05.19 |