hello,

I want to translate rtf files to unicode strings.
I succeeded in remove all the tags,
but now I'm stucked to the special accent characters,
like :

"Vóór"

the character "ó" is represented by the string r"\'f3",
or in bytes: 92, 39,102, 51

so I think I need a way to translate that into the string r"\xf3"
but I can't find a way to accomplish that.

a
Any suggestions are very welcome.

thanks,
Stef Mientki


-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to