Skip to content

This simple utility attempts to do cyrillic to roman conversion ('ФЫВА' becomes 'FYVA').

Notifications You must be signed in to change notification settings

avshabanov/romanize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Romanization Utility

This simple utility attempts to do cyrillic to roman conversion. Internal implementation uses hashtable and bloom filter.

Sample usage:

$ make
# ...produces ./target/romanize
$ echo 'фи-вы-а' | ./target/romanize
fi-vy-a

Note, that it understands only UTF-8 by default, so, for example, CP1251-encoded input needs to be converted to UTF-8 first.

E.g.:

$ cat text-in-cp1251.txt | iconv -f cp1251 | ./target/romanize
# produces readable text

About

This simple utility attempts to do cyrillic to roman conversion ('ФЫВА' becomes 'FYVA').

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published