https://github.com/michal-josef-spacek/app-translit-string
Script to transliterate string.
https://github.com/michal-josef-spacek/app-translit-string
Last synced: 2 months ago
JSON representation
Script to transliterate string.
- Host: GitHub
- URL: https://github.com/michal-josef-spacek/app-translit-string
- Owner: michal-josef-spacek
- License: bsd-2-clause
- Created: 2015-08-20T08:24:14.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-11-25T14:57:09.000Z (over 1 year ago)
- Last Synced: 2025-01-01T04:47:24.420Z (4 months ago)
- Language: Perl
- Size: 84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changes
- License: LICENSE
Awesome Lists containing this project
README
NAME
translit-string - Script to transliterate string.SYNOPSIS
translit-string [-h] [-r] [-t table] [--version] stringDESCRIPTION
translit-string script uses Lingua::Translit class to transliterate strings.ARGUMENTS
* "-h"Print help.
* "-r"
Reverse transliteration.
* "-t table"
Transliteration table.
For list of transliteration tables see L.* "--version"
Print version of script.
* "string"
String to transliterate.
EXAMPLE1
translit-string# Output:
# Usage: translit-string [-h] [-r] [-t table] [--version]
# string
#
# -h Print help.
# -r Reverse transliteration.
# -t table Transliteration table (default value is 'ISO 9').
# --version Print version.EXAMPLE2
translit-string 'Российская Федерация'# Output:
# Rossijskaâ FederaciâEXAMPLE3
translit-string -r 'Rossijskaâ Federaciâ'# Output:
# Российская ФедерацияEXAMPLE4
translit-string -t 'ISO 843' Ελλάδα# Output:
# ElládaDEPENDENCIES
App::Translit::String.SEE ALSO
translit
transliterate text between various writing systemsLingua::Translit
transliterates text between writing systemsREPOSITORY
AUTHOR
Michal Josef Špaček
LICENSE AND COPYRIGHT
© 2015-2021 Michal Josef ŠpačekBSD 2-Clause License
VERSION
0.10