I have the following string:
word = u\'Buffalo,\\xa0IL\\xa060625\'
I don\'t want the \"\\xa0\" in there. How can I get rid of it? The st
This seems to work for getting rid of non-ascii characters:
fixedword = word.encode('ascii','ignore')