Is there any lib that can replace national characters to ASCII equivalents, like:
"Cześć"
to:
"Czesc"
I can of course create map:
{'ś':'s', 'ć': 'c'}
and use some replace function. But I don't want to hardcode all equivalents into my program, if there is some function that already does that.