NAME
Convert::Braille::English - Convert Between Braille Encodings.
SYNOPSIS
use Convert::Braille;
print english_To_BrailleUnicode ( "HELLO" ), "\n";
print brailleDotNumbers_To_English ( "12515123123135" ), "\n";
REQUIRES
perl5.6.1 or later.
EXPORTS
- brailleAscii_To_English( $arg )
-
Convert an Braille-ASCII ([A-Z0-9]) $arg into English. E.g.: HELLO => HELLO
This is a trivial conversion since English overlaps with Braille-ASCII
- english_To_BrailleAscii( $arg )
-
Convert an English $arg into an Amharic-ASCII string. E.g.: HELLO => HELLO
This is a trivial conversion since English overlaps with Braille-ASCII
- english_To_BrailleUnicode( $arg )
-
Convert a English $arg into an Unicode Braille codes. E.g.: HELLO => ⠓⠑⠇⠇⠕
- brailleUnicode_To_English( $arg )
-
Convert a Unicode Braille $arg into an English. E.g.: ⠓⠑⠇⠇⠕ => HELLO
- english_To_BrailleDotNumberss( $arg )
-
Convert a English $arg into a Braille "dot numbers". E.g.: HELLO => 125-15-123-123-135
- brailleDotNumberss_To_English( $arg )
-
Convert a Braille "dot numbers" $arg into English. E.g.: 125-15-123-123-135 => HELLO
COPYRIGHT
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
BUGS
None presently known.
AUTHOR
Daniel Yacob, dyacob@cpan.org
SEE ALSO
Convert::Braille , Convert::Braille::Ethiopic
Included with this package:
examples/demo.pl examples/makeethiopic.pl
examples/ethiopic.pl examples/english.pl