[PYTHON] 파이썬 2.7의 문자열에서 유니 코드 \ u2026을 제거하는 중
PYTHON파이썬 2.7의 문자열에서 유니 코드 \ u2026을 제거하는 중
나는 python2.7에서 이와 같은 문자열을 가지고있다.
This is some \u03c0 text that has to be cleaned\u2026! it\u0027s annoying!
내가 어떻게 이것을 이걸로 변환 할까?
This is some text that has to be cleaned! its annoying!
해결법
-
==============================
1.
>>> s 'This is some \\u03c0 text that has to be cleaned\\u2026! it\\u0027s annoying!' >>> print(s.decode('unicode_escape').encode('ascii','ignore')) This is some text that has to be cleaned! it's annoying!
from https://stackoverflow.com/questions/15321138/removing-unicode-u2026-like-characters-in-a-string-in-python2-7 by cc-by-sa and MIT license
'PYTHON' 카테고리의 다른 글
[PYTHON] if 문을 사용하여 목록 작성 (0) | 2018.10.11 |
---|---|
[PYTHON] 파일의 텍스트를 파이썬으로 대체하기 (0) | 2018.10.11 |
[PYTHON] 파이썬에서 stdout에 C 공유 라이브러리가 인쇄되지 않게하려면 어떻게해야합니까? (0) | 2018.10.11 |
[PYTHON] 파이썬을 통해 연결할 때 기본 Mysql 연결 시간 초과를 어떻게 바꿀 수 있습니까? (0) | 2018.10.11 |
[PYTHON] 사전에 매핑 된 값이있는 새 팬더 열 추가 (0) | 2018.10.11 |