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 remove all of them in python 2.7, and change them into ' 's. I guess the more generalized question would be, is there a way to remove unicode formatting?
Tried using: line = line.replace(u'\xa0',' '), as suggested by another thread, but that changed the \xa0's to u's, so now I have "u"s everywhere instead? ):
EDIT: The problem seems to be resolved by str.replace(u'\xa0', ' ').encode('utf-8'), but just doing .encode('utf-8') without replace() seems to cause it to spit out even weirder characters \xc2 for instance. Can anyone explain this?
str.replace('\xa0',' ')? – BlaXpirit Jun 12 '12 at 9:13u''s instead of''s. :-) – jpaugh Jun 12 '12 at 9:26u' 'replacement, not the' '. Is the original string the unicode one? – pepr Jun 12 '12 at 10:51