Convert::Number::Ethiopic - Convert Between Western and Ethiopic Numeral Systems


Convert-Number-Ethiopic documentation  | view source Contained in the Convert-Number-Ethiopic distribution.

Index


NAME

Top

Convert::Number::Ethiopic - Convert Between Western and Ethiopic Numeral Systems

SYNOPSIS

Top

 #
 #  instantiate with a Western or Ethiopic number (in UTF-8)
 #
 my $n = new Convert::Number::Ethiopic( 12345 );
 my $etNumber = $n->convert;

 $n->number ( 54321 );    # reset number handle
 print $n->convert, "\n";

 print "2002 => ", $n->convert ( 2002 ), "\n";  # convert new number




DESCRIPTION

Top

Implementation of the Ilf-Radix numeral conversion algorithm entirely in Perl. Use to convert between Western and Ethiopic numeral systems.

See: http://www.ethiopic.org/Numerals/

REQUIRES

Top

The package is known to work on Perl 5.6.1 and 5.8.0 but has not been tested on other versions of Perl by the author.

COPYRIGHT

Top

BUGS

Top

None presently known.

AUTHOR

Top

Daniel Yacob, dyacob@cpan.org

SEE ALSO

Top

Convert::Number::Coptic Convert::Digits

Included with this package:

  examples/numbers.pl


Convert-Number-Ethiopic documentation  | view source Contained in the Convert-Number-Ethiopic distribution.