Fwd: How to Split Chinese Character with backslash representation?

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]>


Hi 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']
\xXX just internal representation of None ASCII, I guess above string
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,584
Members
45,075
Latest member
MakersCBDBloodSupport

Latest Threads

Top