| Crates.io | uklatn |
| lib.rs | uklatn |
| version | 1.20.0 |
| created_at | 2024-11-30 23:02:40.731692+00 |
| updated_at | 2024-12-25 17:17:11.653496+00 |
| description | Ukrainian Cyrillic transliteration to Latin script |
| homepage | https://github.com/paiv/uklatn |
| repository | https://github.com/paiv/uklatn |
| max_upload_size | |
| id | 1467033 |
| size | 58,237 |
Ukrainian Cyrillic transliteration to Latin script.
Supported transliteration schemes:
use { uklatn::Table, uklatn::decode, uklatn::encode };
encode("Доброго вечора!", Table::default());
decode("Paljanycja", Table::default());
Set the transliteration scheme:
encode("Борщ", Table::Dstu9112B);
encode("Шевченко", Table::Kmu55);
Input is assumed to be in Ukrainian (Cyrillic or Latin script), and will be processed in full. If your data has mixed languages, do preprocessing to extract Ukrainian chunks.