logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Roman - functions for converting between Roman and Arabic numerals

Author

       OZAWA Sakuro <ozawa at aisoft.co.jp> 1995-1997 Alexandr Ciornii, "<alexchorny at gmail.com>" 2007

Bugs

       Domain of valid Roman numerals is limited to less than 4000, since proper Roman digits for the rest are
       not available in ASCII.

       Please report any bugs or feature requests to "bug-roman /AT/ rt.cpan.org", or through the web interface
       at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Roman>.  I will be notified, and then you'll
       automatically be notified of progress on your bug as I make changes.

Description

       This package provides some functions which help conversion of numeric notation between Roman and Arabic.

Functions

isroman
       Tests if argument is valid roman number

   arabic
       roman => arabic

   Roman
       arabic => roman

   roman
       Same as Roman, lowercase

Name

       Roman - functions for converting between Roman and Arabic numerals

See Also

       Text::Roman - also handles conversion between Arabic and Roman numerals, but can handle a larger range
       than this module.

       Math::Roman - another module for converting between Arabic and Roman numerals.

       Convert::Number::Roman - handles the same conversion, but also lets you specify upper or lower case.

       Roman::Unicode - make Roman numerals, using Unicode characters.

Support

       You can find documentation for this module with the perldoc command.

           perldoc Roman

       You can also look for information at:

       •   AnnoCPAN: Annotated CPAN documentation

           <http://annocpan.org/dist/Roman>

       •   CPAN Ratings

           <http://cpanratings.perl.org/d/Roman>

       •   RT: CPAN's request tracker

           <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Roman>

       •   Search CPAN

           <http://search.cpan.org/dist/Roman>

Synopsis

               use Roman;

               $arabic = arabic($roman) if isroman($roman);
               $roman = Roman($arabic);
               $roman = roman($arabic);

Version

       Version 1.24

See Also