How to you convert a Unicode string (containing extra characters like £ $, etc) into a python string?
|
|||||||||||||||||||||
|
|
You can use encode to ASCII if you don't need to translate the non ASCII chars:
|
|||
|
|
|
If you have a unicode string, and you want to write this to a file, or other serialised form, you must first encode it into a particular representation that can be stored. There are several common unicode encodings, such as UTF-16 (uses 2 bytes for most unicode characters) or UTF-8 (1-4 bytes / codepoint depending on the character) etc. To convert that string into a particular encoding, you can use:
This raw string of bytes can be written to a file. However note that when reading it back, you must know what encoding it is in and decode it using that same encoding. When writing to files, you can get rid of this manual encode/decode process by using the codecs module. So, to open a file that encodes all unicode strings into utf8, use:
Do note that anything else that is using these files must understand what encoding the file is in if they want to read them. If you are the only one doing the reading/writing this is no problem, otherwise make sure that you write in a form understandable by whatever else uses the files. In Python 3, this form of file access is the default, and the built-in |
||||
|
|
|
Here is an example:
|
|||
|
|
|
Well, if you're willing/ready to switch to Python 3 (which you may not be due to the backwards incompatibility with some Python 2 code), you don't have to do any converting; all text in Python 3 is represented with Unicode strings, which also means that there's no more usage of the http://docs.python.org/3.1/whatsnew/3.0.html#text-vs-data-instead-of-unicode-vs-8-bit (Of course, if you're currently using Python 3, then the problem is likely something to do with how you're attempting to save the text to a file.) |
|||||||||||
|
print type(unicode_string), repr(unicode_string)Python 3.x :print type(unicode_string), ascii(unicode_string)Then edit your question and copy/paste the results of the above print statement. DON'T retype the results. Also look up near the top of your HTML and see if you can find something like this: <meta http-equiv="Content-Type" content="text/html; charset=iso-8859 – John Machin Jul 30 '09 at 16:13