L
limodou
---------- Forwarded message ----------
From: limodou <[email protected]>
Date: Oct 27, 2006 11:51 AM
Subject: Re: How to Split Chinese Character with backslash representation?
To: Wijaya Edward <[email protected]>
is encoded with local locale, maybe gbk. You can get the bytes list
through:
str = '\xc5\xeb\xc7\xd5\xbc'
list(str)
And string is just a list of characters.
From: limodou <[email protected]>
Date: Oct 27, 2006 11:51 AM
Subject: Re: How to Split Chinese Character with backslash representation?
To: Wijaya Edward <[email protected]>
\xXX just internal representation of None ASCII, I guess above stringHi all,
I was trying to split a string that
represent chinese characters below:
['\xc5\xeb\xc7\xd5\xbc']
But why the split function here doesn't seem
to do the job for obtaining the desired result:
['\xc5','\xeb','\xc7','\xd5','\xbc']
is encoded with local locale, maybe gbk. You can get the bytes list
through:
str = '\xc5\xeb\xc7\xd5\xbc'
list(str)
And string is just a list of characters.