카테고리 없음

[Python] \xa0 제거하는 법

쟈누이 2021. 3. 19. 23:54
반응형

 

 

1. 에러 원인


non-breaking space 로 Latin1, chr(160) 인코딩 형에서 나타나는 것 같다

 

 

 

 

2. 해결 방법


space 로 치환을 해주어야 한다. 코드는 아래대로 치면 된다

 

string = string.replace(u'\xa0', u' ')

나의 경우에는 위 방법으로 해결했지만,

아래 링크는 다양한 방법이 있으니, 나중에 해결이 안될 경우 참고해야겠다.

 

 

 

 

3.  참고링크


stackoverflow.com/questions/10993612/how-to-remove-xa0-from-string-in-python

 

How to remove \xa0 from string in Python?

I am currently using Beautiful Soup to parse an HTML file and calling get_text(), but it seems like I'm being left with a lot of \xa0 Unicode representing spaces. Is there an efficient way to remov...

stackoverflow.com

 

반응형