transliteration

Character Translation using Python (like the tr command)

Character Translation using Python (like the tr command) Question: Is there a way to do character translation / transliteration (kind of like the tr command) using Python? Some examples in Perl would be: my $string = "some fields"; $string =~ tr/dies/eaid/; print $string; # domi failed $string = ‘the cat sat on the mat.’; $string …

Total answers: 6