Pregunta

I'm doing some text processing, and I need all the text to be converted to lowercase, BUT the text is french and I need to maintain all the diacritics, so that "È" would get converted to "è", etc. If it helps at all, I actually don't need the final output as text, just a identifier (ex. a number) for each unique character (where "e" and "è" are different characters). Any suggestions?

¿Fue útil?

Solución

Use Unicode strings:

>>> u"É".lower()
'é'

Otros consejos

I think your problem is that you are converting to ascii. If you try something like

word = u"HÈLLO"
print word.lower()

That should do it

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top