On Aug 31, 11:04 pm, Asterix <aste...@lagaul e.orgwrote:
how could I test that those 2 strings are the same:
>
'séd' (repr is 's\\xc3\\xa9d')
>
u'séd' (repr is u's\\xe9d')
[note: your reprs are wrong; change the \\ to \]
You need to decode the non-unicode string and compare the result with
the unicode string. You need to know the encoding used for the non-
unicode string. In the example that you gave, it's about 99.99% likely
that it's UTF-8.
The first form is "composed", just being U+00E9 (LATIN SMALL LETTER E
WITH ACUTE). The second form is "decomposed ", being made up of U+0065
(LATIN SMALL LETTER E) and U+0301 (COMBINING ACUTE ACCENT).
Even though they represent the same thing to a human, they don't compare
as equal. But if you normalize them to the same form, they will.
For more information, look at the unicodedata module's documentation:
<http://docs.python.org/lib/module-unicodedata.htm l>
--
Comment