1Roman(3) User Contributed Perl Documentation Roman(3)
2
3
4
6 Roman - functions for converting between Roman and Arabic numerals
7
9 Version 1.24
10
12 use Roman;
13
14 $arabic = arabic($roman) if isroman($roman);
15 $roman = Roman($arabic);
16 $roman = roman($arabic);
17
19 This package provides some functions which help conversion of numeric
20 notation between Roman and Arabic.
21
23 isroman
24 Tests if argument is valid roman number
25
26 arabic
27 roman => arabic
28
29 Roman
30 arabic => roman
31
32 roman
33 Same as Roman, lowercase
34
36 Domain of valid Roman numerals is limited to less than 4000, since
37 proper Roman digits for the rest are not available in ASCII.
38
39 Please report any bugs or feature requests to "bug-roman /AT/
40 rt.cpan.org", or through the web interface at
41 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Roman>. I will be
42 notified, and then you'll automatically be notified of progress on your
43 bug as I make changes.
44
46 Text::Roman - also handles conversion between Arabic and Roman
47 numerals, but can handle a larger range than this module.
48
49 Math::Roman - another module for converting between Arabic and Roman
50 numerals.
51
52 Convert::Number::Roman - handles the same conversion, but also lets you
53 specify upper or lower case.
54
55 Roman::Unicode - make Roman numerals, using Unicode characters.
56
58 You can find documentation for this module with the perldoc command.
59
60 perldoc Roman
61
62 You can also look for information at:
63
64 • AnnoCPAN: Annotated CPAN documentation
65
66 <http://annocpan.org/dist/Roman>
67
68 • CPAN Ratings
69
70 <http://cpanratings.perl.org/d/Roman>
71
72 • RT: CPAN's request tracker
73
74 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Roman>
75
76 • Search CPAN
77
78 <http://search.cpan.org/dist/Roman>
79
81 OZAWA Sakuro <ozawa at aisoft.co.jp> 1995-1997 Alexandr Ciornii,
82 "<alexchorny at gmail.com>" 2007
83
85 Copyright (c) 1995 OZAWA Sakuro. All rights reserved. This program is
86 free software; you can redistribute it and/or modify it under the same
87 terms as Perl itself.
88
89
90
91perl v5.38.0 2023-07-21 Roman(3)