Dekuji, to bylo presne to, co jsem potreboval
--
Pavel Sibal
entexsoft na entexsoft.cz
> line = unicode(line, 'utf-8')
> line = unicodedata.normalize('NFKD', line)
> output = ''
> for c in line:
> if not unicodedata.combining(c):
> output += c
>
> pripadny prepis s pouzitim list comprehensions necham za domacu ulohu
>
> :-)