I have a string that looks like so:

6 918 417 712

The clear cut way to trim this string (as I understand Python) is simply to

say the string is in a variable called s, we get:

s.replace('Â ', '')

That should do the trick. But of course it complains that the Non-ASCII character '\xc2' in file blabla.py is not encoded.

I never quite could understand how to switch between different encodings.

Appreciate some help.

EDIT:

Here's the code, it really is just the same as above, but now it's in context.

The file is saved as UTF-8 in notepad. The file has the following header:

#!/usr/bin/python2.4
# -*- coding: utf-8 -*-

The code:

f = urllib.urlopen(url)

soup = BeautifulSoup(f)

s = soup.find('div', {'id':'main_count'})

#making a print 's' here goes well. it shows 6Â 918Â 417Â 712

s.replace('Â ','')

save_main_count(s)


it gets no further than s.replace...

link|improve this question

Tried all of the 4 answers so far. No go. Still getting the UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1: ordinal not in range(128) – adergaard Aug 27 '09 at 16:09
Paste your full code. What version of Python are you using? – truppo Aug 27 '09 at 16:11
2.4 - will edit above and paste it. thanks. – adergaard Aug 27 '09 at 16:12
your unicode string must be prepended with u – SilentGhost Aug 27 '09 at 16:25
1  
I'll bet this is why Python 3 is so strict about the difference between strings and byte sequences, just to avoid this kind of confusion. – Mark Ransom Aug 27 '09 at 16:42
show 4 more comments
feedback

11 Answers

up vote 14 down vote accepted
  • You need a declaration at the top of each source file that uses Unicode literals.

See: http://docs.python.org/tutorial/interpreter.html#source-code-encoding

Assuming utf8, this would go at the top:

# -*- coding: utf-8 -*-
  • The source file must be saved using the correct encoding in your text editor as well.

  • The literal must have a u before it, as in s.replace(u"Â ", "")

  • The string s must be a unicode string as well. BeautifulSoup might not be returning unicode here. Try s = s.decode('utf-8')

  • string.replace returns a new string and does not edit in place, so make sure you're using the return value as well

link|improve this answer
1  
Thank you very much. This finally did the trick. Thanks ALL for this very helpful forum. Fantastic. – adergaard Aug 27 '09 at 16:59
feedback
def removeNonAscii(s): return "".join(filter(lambda x: ord(x)<128, s))

edit: my first impulse is always to use a filter, but the generator expression is more memory efficient (and shorter)...

def removeNonAscii(s): return "".join(i for i in s if ord(i)<128)

Keep in mind that this is guaranteed to work with UTF-8 encoding (because all bytes in multi-byte characters have the highest bit set to 1).

link|improve this answer
Let me just say that this is an excellent answer as well! This will save me a lot of time in the future. Thanks very much. I wish there was some way of accepting TWO answers. – adergaard Aug 27 '09 at 17:05
you're welcome :-) – fortran Aug 27 '09 at 17:27
1  
awesome @fortran, this is mindblowing and definitely a huge time saver. Thank you very much! – daydreamer Mar 22 at 18:44
@daydreamer he he, I wouldn't call it mindblowing, but thanks anyway! – fortran Mar 26 at 14:43
feedback
>>> unicode_string = u"hello aåbäcö"
>>> unicode_string.encode("ascii", "ignore")
'hello abc'
link|improve this answer
1  
I see the votes you get but when I try it it says: Nope. UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1: ordinal not in range(128). Could it be that my orignal string is not in unicode? Well in any case. it needs – adergaard Aug 27 '09 at 16:11
3  
Akk. What a cliff hanger. It needs....something! But what? Ahhh! – mlissner Feb 23 '11 at 16:29
feedback
#!/usr/bin/env python
# -*- coding: utf-8 -*-

s = u"6Â 918Â 417Â 712"
s = s.replace(u"Â", "") 
print s

This will print out 6 918 417 712

link|improve this answer
Nope. UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2 in position 1: ordinal not in range(128). Could it be that my orignal string is not in unicode? Well in any case. I'm probably doing something wrong. – adergaard Aug 27 '09 at 16:11
@adergaard, did you add # -- coding: utf-8 -- at the top of the source file? – Nadia Alramli Aug 27 '09 at 16:17
Yes, see the top of this page again, I've edited the questoin and put in the code and the header comments. Thanks for your assistance. – adergaard Aug 27 '09 at 16:19
I think you will have to figure out how to get the strings from the html or xml document in unicode. More info on that here: diveintopython.org/xml_processing/unicode.html – DoR Aug 27 '09 at 16:38
feedback

Using Regex:

import re

strip_unicode = re.compile("([^-_a-zA-Z0-9!@#%&=,/'\";:~`\$\^\*\(\)\+\[\]\.\{\}\|\?\<\>\\]+|[^\s]+)")
print strip_unicode.sub('', u'6Â 918Â 417Â 712')
link|improve this answer
Did I seriously get voted down for this? Feel the love... – Akoi Meexx Aug 27 '09 at 19:33
+1 from a regex fan :) – Soulseekah Nov 12 '10 at 8:03
feedback
s.replace(u'Â ', '')              # u before string is important

and make your .py file unicode.

link|improve this answer
feedback

This is a dirty hack, but may work.

s2 = ""
for i in s:
    if ord(i) < 128:
        s2 += i
link|improve this answer
feedback

The following code will replace all non ASCII characters with question marks.

"".join([x if ord(x) < 128 else '?' for x in s])
link|improve this answer
feedback

I know it's an old thread, but I felt compelled to mention the translate method, which is always a good way to replace all character codes above 128 (or other if necessary).

Usage : str.translate(table[, deletechars])

>>> trans_table = ''.join( [chr(i) for i in range(128)] + [' '] * 128 )

>>> 'Résultat'.translate(trans_table)
'R sultat'
>>> '6Â 918Â 417Â 712'.translate(trans_table)
'6  918  417  712'

Starting with Python 2.6, you can also set the table to None, and use deletechars to delete the characters you don't want as in the examples shown in the standard docs at http://docs.python.org/library/stdtypes.html.

With unicode strings, the translation table is not a 256-character string but a dict with the ord() of relevant characters as keys. But anyway getting a proper ascii string from a unicode string is simple enough, using the method mentioned by truppo above, namely : unicode_string.encode("ascii", "ignore")

As a summary, if for some reason you absolutely need to get an ascii string (for instance, when you raise a standard exception with raise Exception, ascii_message ), you can use the following function:

trans_table = ''.join( [chr(i) for i in range(128)] + ['?'] * 128 )
def ascii(s):
    if isinstance(s, unicode):
        return s.encode('ascii', 'replace')
    else:
        return s.translate(trans_table)

The good thing with translate is that you can actually convert accented characters to relevant non-accented ascii characters instead of simply deleting them or replacing them by '?'. This is often useful, for instance for indexing purposes.

link|improve this answer
feedback

For what it was worth, my character set was utf-8 and I had included the classic "# -- coding: utf-8 --" line.

However, I discovered that I didn't have Universal Newlines when reading this data from a webpage. My text had two words, separated by "\r\n". I was only splitting on the \n and replacing the "\n". Once I looped through and saw the character set in question, I realized the mistake.

So, it could also be within the ASCII character set, but a character that you didn't expect.

link|improve this answer
feedback

Way too late for an answer, but the original string was in UTF-8 and '\xc2\xa0' is UTF-8 for NO-BREAK SPACE. Simply decode the original string as s.decode('utf-8') (\xa0 displays as a space when decoded incorrectly as Windows-1252 or latin-1:

Example (Python 3)

s = b'6\xc2\xa0918\xc2\xa0417\xc2\xa0712'
print(s.decode('latin-1')) # incorrectly decoded
u = s.decode('utf8') # correctly decoded
print(u)
print(u.replace('\N{NO-BREAK SPACE}','_'))
print(u.replace('\xa0','-')) # \xa0 is Unicode for NO-BREAK SPACE

Output

6 918 417 712
6 918 417 712
6_918_417_712
6-918-417-712
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.