Last updated:
0 purchases
greek tools
Greek Tools for Dart #
A Dart library for manipulating Greek text - mainly transforming between Latin and Greek character sets.
Features #
Based on the ISO 843 standard (which is identical to ELOT 743).
It can be used to transform Greek text to the equivalent using the Latin alphabet (aka Greeklish). The other way also works, assuming the source text is consistent with the above standards.
Usage #
Simply use toGreeklish tp convert Greek text to Greeklish. Everything else is ignored.
import 'package:greek_tools/greek_tools.dart';
toGreeklish('Κόσμος'); // produces 'Kosmos'
copied to clipboard
See more examples at the /example folder.
Additional information #
Developed in June 2022 by Nearchos Paspallis.
This project is based on, and related to the Java version of
Greek Tools.
This Dart library is available on pub.dev at https://pub.dev/packages/greek_tools
To publish a new version, follow these steps:
check with a dry run: dart pub publish --dry-run
if everything is ok, proceed with publishing: dart pub publish
For details see https://dart.dev/tools/pub/publishing.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.