Roman - Perl module for conversion between Roman and Arabic numerals.
use Roman;
$arabic = arabic($roman) if isroman($roman);
$roman = Roman($arabic);
$roman = roman($arabic);
This package provides some functions which help conversion of numeric notation between Roman and Arabic.
Domain of valid Roman numerals is limited to less than 40000, using Unicode characters for numbers above 4000 (needs 5.8.0 or above).
OZAWA Sakuro <ozawa@aisoft.co.jp> Updated for Unicode support by Michel Rodriguez <mirod@cpan.org>
Copyright (c) 1995 OZAWA Sakuro. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Additional code Copyright (c) 2003 Michel Rodriguez. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.