How can you use string methods like strip() on a unicode string? and can't you access characters of a unicode string like with oridnary strings? (ex: mystring[0:4] )
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It's working as usual, as long as they are actually
|
|||
|
|
|
You can do every string operation, actually in Python 3, all str's are unicode.
|
|||
|
|
|
See the Python docs on Unicode strings and the following section on string methods. Unicode strings support all of the usual methods and operations as normal ASCII strings. |
|||
|
|
u'asdf '.strip()[2:]works perfectly fine for me (it yieldsu'df'). – Björn Pollex Aug 31 '11 at 14:27u"Hallöle Wélt"[1:5]. – blubb Aug 31 '11 at 14:28