1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320
|
package Number::Format;
# Minimum version is 5.10.0. May work on earlier versions, but not
# supported on any version older than 5.10. Hack this line at your own risk:
require 5.010;
use strict;
use warnings;
=head1 NAME
Number::Format - Perl extension for formatting numbers
=head1 SYNOPSIS
use Number::Format;
my $x = new Number::Format %args;
$formatted = $x->round($number, $precision);
$formatted = $x->format_number($number, $precision, $trailing_zeroes);
$formatted = $x->format_negative($number, $picture);
$formatted = $x->format_picture($number, $picture);
$formatted = $x->format_price($number, $precision, $symbol);
$formatted = $x->format_bytes($number, $precision);
$number = $x->unformat_number($formatted);
use Number::Format qw(:subs);
$formatted = round($number, $precision);
$formatted = format_number($number, $precision, $trailing_zeroes);
$formatted = format_negative($number, $picture);
$formatted = format_picture($number, $picture);
$formatted = format_price($number, $precision, $symbol);
$formatted = format_bytes($number, $precision);
$number = unformat_number($formatted);
=head1 REQUIRES
Perl, version 5.8 or higher.
POSIX.pm to determine locale settings.
Carp.pm is used for some error reporting.
=head1 DESCRIPTION
These functions provide an easy means of formatting numbers in a
manner suitable for displaying to the user.
There are two ways to use this package. One is to declare an object
of type Number::Format, which you can think of as a formatting engine.
The various functions defined here are provided as object methods.
The constructor C<new()> can be used to set the parameters of the
formatting engine. Valid parameters are:
THOUSANDS_SEP - character inserted between groups of 3 digits
DECIMAL_POINT - character separating integer and fractional parts
MON_THOUSANDS_SEP - like THOUSANDS_SEP, but used for format_price
MON_DECIMAL_POINT - like DECIMAL_POINT, but used for format_price
INT_CURR_SYMBOL - character(s) denoting currency (see format_price())
DECIMAL_DIGITS - number of digits to the right of dec point (def 2)
DECIMAL_FILL - boolean; whether to add zeroes to fill out decimal
NEG_FORMAT - format to display negative numbers (def ``-x'')
KILO_SUFFIX - suffix to add when format_bytes formats kilobytes (trad)
MEGA_SUFFIX - " " " " " " megabytes (trad)
GIGA_SUFFIX - " " " " " " gigabytes (trad)
KIBI_SUFFIX - suffix to add when format_bytes formats kibibytes (iec)
MEBI_SUFFIX - " " " " " " mebibytes (iec)
GIBI_SUFFIX - " " " " " " gibibytes (iec)
They may be specified in upper or lower case, with or without a
leading hyphen ( - ).
If C<THOUSANDS_SEP> is set to the empty string, format_number will not
insert any separators.
The defaults for C<THOUSANDS_SEP>, C<DECIMAL_POINT>,
C<MON_THOUSANDS_SEP>, C<MON_DECIMAL_POINT>, and C<INT_CURR_SYMBOL>
come from the POSIX locale information (see L<perllocale>). If your
POSIX locale does not provide C<MON_THOUSANDS_SEP> and/or
C<MON_DECIMAL_POINT> fields, then the C<THOUSANDS_SEP> and/or
C<DECIMAL_POINT> values are used for those parameters. Formerly,
POSIX was optional but this caused problems in some cases, so it is
now required. If this causes you hardship, please contact the author
of this package at <SwPrAwM@cpan.org> (remove "SPAM" to get correct
email address) for help.
If any of the above parameters are not specified when you invoke
C<new()>, then the values are taken from package global variables of
the same name (e.g. C<$DECIMAL_POINT> is the default for the
C<DECIMAL_POINT> parameter). If you use the C<:vars> keyword on your
C<use Number::Format> line (see non-object-oriented example below) you
will import those variables into your namesapce and can assign values
as if they were your own local variables. The default values for all
the parameters are:
THOUSANDS_SEP = ','
DECIMAL_POINT = '.'
MON_THOUSANDS_SEP = ','
MON_DECIMAL_POINT = '.'
INT_CURR_SYMBOL = 'USD'
DECIMAL_DIGITS = 2
DECIMAL_FILL = 0
NEG_FORMAT = '-x'
KILO_SUFFIX = 'K'
MEGA_SUFFIX = 'M'
GIGA_SUFFIX = 'G'
KIBI_SUFFIX = 'KiB'
MEBI_SUFFIX = 'MiB'
GIBI_SUFFIX = 'GiB'
Note however that when you first call one of the functions in this
module I<without> using the object-oriented interface, further setting
of those global variables will have no effect on non-OO calls. It is
recommended that you use the object-oriented interface instead for
fewer headaches and a cleaner design.
The C<DECIMAL_FILL> and C<DECIMAL_DIGITS> values are not set by the
Locale system, but are definable by the user. They affect the output
of C<format_number()>. Setting C<DECIMAL_DIGITS> is like giving that
value as the C<$precision> argument to that function. Setting
C<DECIMAL_FILL> to a true value causes C<format_number()> to append
zeroes to the right of the decimal digits until the length is the
specified number of digits.
C<NEG_FORMAT> is only used by C<format_negative()> and is a string
containing the letter 'x', where that letter will be replaced by a
positive representation of the number being passed to that function.
C<format_number()> and C<format_price()> utilize this feature by
calling C<format_negative()> if the number was less than 0.
C<KILO_SUFFIX>, C<MEGA_SUFFIX>, and C<GIGA_SUFFIX> are used by
C<format_bytes()> when the value is over 1024, 1024*1024, or
1024*1024*1024, respectively. The default values are "K", "M", and
"G". These apply in the default "traditional" mode only. Note: TERA
or higher are not implemented because of integer overflows on 32-bit
systems.
C<KIBI_SUFFIX>, C<MEBI_SUFFIX>, and C<GIBI_SUFFIX> are used by
C<format_bytes()> when the value is over 1024, 1024*1024, or
1024*1024*1024, respectively. The default values are "KiB", "MiB",
and "GiB". These apply in the "iso60027"" mode only. Note: TEBI or
higher are not implemented because of integer overflows on 32-bit
systems.
The only restrictions on C<DECIMAL_POINT> and C<THOUSANDS_SEP> are that
they must not be digits and must not be identical. There are no
restrictions on C<INT_CURR_SYMBOL>.
For example, a German user might include this in their code:
use Number::Format;
my $de = new Number::Format(-thousands_sep => '.',
-decimal_point => ',',
-int_curr_symbol => 'DEM');
my $formatted = $de->format_number($number);
Or, if you prefer not to use the object oriented interface, you can do
this instead:
use Number::Format qw(:subs :vars);
$THOUSANDS_SEP = '.';
$DECIMAL_POINT = ',';
$INT_CURR_SYMBOL = 'DEM';
my $formatted = format_number($number);
=head1 EXPORTS
Nothing is exported by default. To export the functions or the global
variables defined herein, specify the function name(s) on the import
list of the C<use Number::Format> statement. To export all functions
defined herein, use the special tag C<:subs>. To export the
variables, use the special tag C<:vars>; to export both subs and vars
you can use the tag C<:all>.
=cut
###---------------------------------------------------------------------
use strict;
use Exporter;
use Carp;
use POSIX qw(localeconv);
use base qw(Exporter);
our @EXPORT_SUBS =
qw( format_number format_negative format_picture
format_price format_bytes round unformat_number );
our @EXPORT_LC_NUMERIC =
qw( $DECIMAL_POINT $THOUSANDS_SEP $GROUPING );
our @EXPORT_LC_MONETARY =
qw( $INT_CURR_SYMBOL $CURRENCY_SYMBOL $MON_DECIMAL_POINT
$MON_THOUSANDS_SEP $MON_GROUPING $POSITIVE_SIGN $NEGATIVE_SIGN
$INT_FRAC_DIGITS $FRAC_DIGITS $P_CS_PRECEDES $P_SEP_BY_SPACE
$N_CS_PRECEDES $N_SEP_BY_SPACE $P_SIGN_POSN $N_SIGN_POSN );
our @EXPORT_OTHER =
qw( $DECIMAL_DIGITS $DECIMAL_FILL $NEG_FORMAT
$KILO_SUFFIX $MEGA_SUFFIX $GIGA_SUFFIX
$KIBI_SUFFIX $MEBI_SUFFIX $GIBI_SUFFIX );
our @EXPORT_VARS = ( @EXPORT_LC_NUMERIC, @EXPORT_LC_MONETARY, @EXPORT_OTHER );
our @EXPORT_ALL = ( @EXPORT_SUBS, @EXPORT_VARS );
our @EXPORT_OK = ( @EXPORT_ALL );
our %EXPORT_TAGS = ( subs => \@EXPORT_SUBS,
vars => \@EXPORT_VARS,
lc_numeric_vars => \@EXPORT_LC_NUMERIC,
lc_monetary_vars => \@EXPORT_LC_MONETARY,
other_vars => \@EXPORT_OTHER,
all => \@EXPORT_ALL );
our $VERSION = '1.76';
# Refer to http://www.opengroup.org/onlinepubs/007908775/xbd/locale.html
# for more details about the POSIX variables
# Locale variables provided by POSIX for numbers (LC_NUMERIC)
our $DECIMAL_POINT = '.'; # decimal point symbol for numbers
our $THOUSANDS_SEP = ','; # thousands separator for numbers
our $GROUPING = undef;# grouping rules for thousands (UNSUPPORTED)
# Locale variables provided by POSIX for currency (LC_MONETARY)
our $INT_CURR_SYMBOL = 'USD';# intl currency symbol
our $CURRENCY_SYMBOL = '$'; # domestic currency symbol
our $MON_DECIMAL_POINT = '.'; # decimal point symbol for monetary values
our $MON_THOUSANDS_SEP = ','; # thousands separator for monetary values
our $MON_GROUPING = undef;# like 'grouping' for monetary (UNSUPPORTED)
our $POSITIVE_SIGN = ''; # string to add for non-negative monetary
our $NEGATIVE_SIGN = '-'; # string to add for negative monetary
our $INT_FRAC_DIGITS = 2; # digits to right of decimal for intl currency
our $FRAC_DIGITS = 2; # digits to right of decimal for currency
our $P_CS_PRECEDES = 1; # curr sym precedes(1) or follows(0) positive
our $P_SEP_BY_SPACE = 1; # add space to positive; 0, 1, or 2
our $N_CS_PRECEDES = 1; # curr sym precedes(1) or follows(0) negative
our $N_SEP_BY_SPACE = 1; # add space to negative; 0, 1, or 2
our $P_SIGN_POSN = 1; # sign rules for positive: 0-4
our $N_SIGN_POSN = 1; # sign rules for negative: 0-4
# The following are specific to Number::Format
our $DECIMAL_DIGITS = 2;
our $DECIMAL_FILL = 0;
our $NEG_FORMAT = '-x';
our $KILO_SUFFIX = 'K';
our $MEGA_SUFFIX = 'M';
our $GIGA_SUFFIX = 'G';
our $KIBI_SUFFIX = 'KiB';
our $MEBI_SUFFIX = 'MiB';
our $GIBI_SUFFIX = 'GiB';
our $DEFAULT_LOCALE = { (
# LC_NUMERIC
decimal_point => $DECIMAL_POINT,
thousands_sep => $THOUSANDS_SEP,
grouping => $GROUPING,
# LC_MONETARY
int_curr_symbol => $INT_CURR_SYMBOL,
currency_symbol => $CURRENCY_SYMBOL,
mon_decimal_point => $MON_DECIMAL_POINT,
mon_thousands_sep => $MON_THOUSANDS_SEP,
mon_grouping => $MON_GROUPING,
positive_sign => $POSITIVE_SIGN,
negative_sign => $NEGATIVE_SIGN,
int_frac_digits => $INT_FRAC_DIGITS,
frac_digits => $FRAC_DIGITS,
p_cs_precedes => $P_CS_PRECEDES,
p_sep_by_space => $P_SEP_BY_SPACE,
n_cs_precedes => $N_CS_PRECEDES,
n_sep_by_space => $N_SEP_BY_SPACE,
p_sign_posn => $P_SIGN_POSN,
n_sign_posn => $N_SIGN_POSN,
# The following are specific to Number::Format
decimal_digits => $DECIMAL_DIGITS,
decimal_fill => $DECIMAL_FILL,
neg_format => $NEG_FORMAT,
kilo_suffix => $KILO_SUFFIX,
mega_suffix => $MEGA_SUFFIX,
giga_suffix => $GIGA_SUFFIX,
kibi_suffix => $KIBI_SUFFIX,
mebi_suffix => $MEBI_SUFFIX,
gibi_suffix => $GIBI_SUFFIX,
) };
#
# POSIX::localeconv() returns -1 for numeric values that are not applicable to
# the current locale. This module ignores them. @IGNORE_NEGATIVE lists the
# ones that this module otherwise handles (there are some fields that this
# module always ignores, so don't need to be in the list). (Prior to v5.37.7,
# only the Windows version of POSIX::localeconv() returned -1; other versions
# simply didn't return any values at all for not-applicable fields. But the
# end result is the same regardless of version.)
#
our @IGNORE_NEGATIVE = qw( frac_digits int_frac_digits
n_cs_precedes n_sep_by_space n_sign_posn
p_xs_precedes p_sep_by_space p_sign_posn );
#
# Largest integer a 32-bit Perl can handle is based on the mantissa
# size of a double float, which is up to 53 bits. While we may be
# able to support larger values on 64-bit systems, some Perl integer
# operations on 64-bit integer systems still use the 53-bit-mantissa
# double floats. To be safe, we cap at 2**53; use Math::BigFloat
# instead for larger numbers.
#
use constant MAX_INT => 2**53;
###---------------------------------------------------------------------
# INTERNAL FUNCTIONS
# These functions (with names beginning with '_' are for internal use
# only. There is no guarantee that they will remain the same from one
# version to the next!
##----------------------------------------------------------------------
# _get_self creates an instance of Number::Format with the default
# values for the configuration parameters, if the first element of
# @_ is not already an object.
my $DefaultObject;
sub _get_self
{
# Not calling $_[0]->isa because that may result in unblessed
# reference error
unless (ref $_[0] && UNIVERSAL::isa($_[0], "Number::Format"))
{
$DefaultObject ||= new Number::Format();
unshift (@_, $DefaultObject);
}
@_;
}
##----------------------------------------------------------------------
# _check_seps is used to validate that the thousands_sep,
# decimal_point, mon_thousands_sep and mon_decimal_point variables
# have acceptable values. For internal use only.
sub _check_seps
{
my ($self) = @_;
croak "Not an object" unless ref $self;
foreach my $prefix ("", "mon_")
{
croak "${prefix}thousands_sep is undefined"
unless defined $self->{"${prefix}thousands_sep"};
croak "${prefix}thousands_sep may not be numeric"
if $self->{"${prefix}thousands_sep"} =~ /\d/;
croak "${prefix}decimal_point may not be numeric"
if $self->{"${prefix}decimal_point"} =~ /\d/;
croak("${prefix}thousands_sep and ".
"${prefix}decimal_point may not be equal")
if $self->{"${prefix}decimal_point"} eq
$self->{"${prefix}thousands_sep"}
# There are legal locales where 'mon_decimal_point' and
# 'mon_thousands_sep' are both "" (the empty string)
&& ($prefix eq "" || $self->{"mon_decimal_point"} ne "");
}
}
##----------------------------------------------------------------------
# _get_multipliers returns the multipliers to be used for kilo, mega,
# and giga (un-)formatting. Used in format_bytes and unformat_number.
# For internal use only.
sub _get_multipliers
{
my($base) = @_;
if (!defined($base) || $base == 1024)
{
return ( kilo => 0x00000400,
mega => 0x00100000,
giga => 0x40000000 );
}
elsif ($base == 1000)
{
return ( kilo => 1_000,
mega => 1_000_000,
giga => 1_000_000_000 );
}
else
{
croak "base overflow" if $base **3 > MAX_INT;
croak "base must be a positive integer"
unless $base > 0 && $base == int($base);
return ( kilo => $base,
mega => $base ** 2,
giga => $base ** 3 );
}
}
##----------------------------------------------------------------------
# _complain_undef displays a warning message on STDERR and is called
# when a subroutine has been invoked with an undef value. A warning
# message is printed if the calling environment has "uninitialized"
# warnings enabled.
sub _complain_undef
{
my @stack;
my($sub, $bitmask) = (caller(1))[3,9];
my $offset = $warnings::Offsets{"uninitialized"};
carp "Use of uninitialized value in call to $sub"
if vec($bitmask, $offset, 1);
}
###---------------------------------------------------------------------
=head1 METHODS
=over 4
=cut
##----------------------------------------------------------------------
=item new( %args )
Creates a new Number::Format object. Valid keys for %args are any of
the parameters described above. Keys may be in all uppercase or all
lowercase, and may optionally be preceded by a hyphen (-) character.
Example:
my $de = new Number::Format(-thousands_sep => '.',
-decimal_point => ',',
-int_curr_symbol => 'DEM');
=cut
sub new
{
my $type = shift;
my %args = @_;
# Fetch defaults from current locale, or failing that, using globals
my $me = {};
# my $locale = setlocale(LC_ALL, "");
my $locale_values = localeconv();
# Strip out illegal negative values from the current locale
foreach ( @IGNORE_NEGATIVE )
{
if (defined($locale_values->{$_}) && $locale_values->{$_} eq '-1')
{
delete $locale_values->{$_};
}
}
while(my($arg, $default) = each %$DEFAULT_LOCALE)
{
$me->{$arg} = (( exists $locale_values->{$arg})
&& $locale_values->{$arg} ne "")
? $locale_values->{$arg}
: $default;
foreach ($arg, uc $arg, "-$arg", uc "-$arg")
{
next unless defined $args{$_};
$me->{$arg} = $args{$_};
delete $args{$_};
last;
}
}
#
# Some locales set the decimal_point to "," and the thousands_sep to "".
# This module generally defaults an empty thousands_sep to ",", creating a
# conflict in such a locale. Instead, leave the thousands_sep as the
# empty string. Suggested by Moritz Onken.
foreach my $prefix ("", "mon_")
{
$me->{"${prefix}thousands_sep"} = ""
if ($me->{"${prefix}decimal_point"} eq
$me->{"${prefix}thousands_sep"});
}
croak "Invalid argument(s)" if %args;
bless $me, $type;
$me;
}
##----------------------------------------------------------------------
=item round($number, $precision)
Rounds the number to the specified precision. If C<$precision> is
omitted, the value of the C<DECIMAL_DIGITS> parameter is used (default
value 2). Both input and output are numeric (the function uses math
operators rather than string manipulation to do its job), The value of
C<$precision> may be any integer, positive or negative. Examples:
round(3.14159) yields 3.14
round(3.14159, 4) yields 3.1416
round(42.00, 4) yields 42
round(1234, -2) yields 1200
Since this is a mathematical rather than string oriented function,
there will be no trailing zeroes to the right of the decimal point,
and the C<DECIMAL_POINT> and C<THOUSANDS_SEP> variables are ignored.
To format your number using the C<DECIMAL_POINT> and C<THOUSANDS_SEP>
variables, use C<format_number()> instead.
=cut
sub round
{
my ($self, $number, $precision) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
$precision = $self->{decimal_digits} unless defined $precision;
$precision = 2 unless defined $precision;
croak("precision must be integer")
unless int($precision) == $precision;
if (ref($number) && $number->isa("Math::BigFloat"))
{
my $rounded = $number->copy();
$rounded->precision(-$precision);
return $rounded;
}
my $sign = $number <=> 0;
my $multiplier = (10 ** $precision);
my $result = abs($number);
my $product = $result * $multiplier;
croak "round() overflow. Try smaller precision or use Math::BigFloat"
if $product > MAX_INT;
# We need to add 1e-14 to avoid some rounding errors due to the
# way floating point numbers work - see string-eq test in t/round.t
$result = int($product + .5 + 1e-14) / $multiplier;
$result = -$result if $sign < 0;
return $result;
}
##----------------------------------------------------------------------
=item format_number($number, $precision, $trailing_zeroes)
Formats a number by adding C<THOUSANDS_SEP> between each set of 3
digits to the left of the decimal point, substituting C<DECIMAL_POINT>
for the decimal point, and rounding to the specified precision using
C<round()>. Note that C<$precision> is a I<maximum> precision
specifier; trailing zeroes will only appear in the output if
C<$trailing_zeroes> is provided, or the parameter C<DECIMAL_FILL> is
set, with a value that is true (not zero, undef, or the empty string).
If C<$precision> is omitted, the value of the C<DECIMAL_DIGITS>
parameter (default value of 2) is used.
If the value is too large or great to work with as a regular number,
but instead must be shown in scientific notation, returns that number
in scientific notation without further formatting.
Examples:
format_number(12345.6789) yields '12,345.68'
format_number(123456.789, 2) yields '123,456.79'
format_number(1234567.89, 2) yields '1,234,567.89'
format_number(1234567.8, 2) yields '1,234,567.8'
format_number(1234567.8, 2, 1) yields '1,234,567.80'
format_number(1.23456789, 6) yields '1.234568'
format_number("0.000020000E+00", 7);' yields '2e-05'
Of course the output would have your values of C<THOUSANDS_SEP> and
C<DECIMAL_POINT> instead of ',' and '.' respectively.
=cut
sub format_number
{
my ($self, $number, $precision, $trailing_zeroes, $mon) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
$self->_check_seps(); # first make sure the SEP variables are valid
my($thousands_sep, $decimal_point) =
$mon ? @$self{qw(mon_thousands_sep mon_decimal_point)}
: @$self{qw(thousands_sep decimal_point)};
# Set defaults and standardize number
$precision = $self->{decimal_digits} unless defined $precision;
$trailing_zeroes = $self->{decimal_fill} unless defined $trailing_zeroes;
# Handle negative numbers
my $sign = $number <=> 0;
$number = abs($number) if $sign < 0;
$number = $self->round($number, $precision); # round off $number
# detect scientific notation
my $exponent = 0;
if ($number =~ /^(-?[\d.]+)e([+-]\d+)$/)
{
# Don't attempt to format numbers that require scientific notation.
return $number;
}
# Split integer and decimal parts of the number and add commas
my $integer = int($number);
my $decimal;
# Note: In perl 5.6 and up, string representation of a number
# automagically includes the locale decimal point. This way we
# will detect the decimal part correctly as long as the decimal
# point is 1 character.
$decimal = substr($number, length($integer)+1)
if (length($integer) < length($number));
$decimal = '' unless defined $decimal;
# Add trailing 0's if $trailing_zeroes is set.
$decimal .= '0'x( $precision - length($decimal) )
if $trailing_zeroes && $precision > length($decimal);
# Add the commas (or whatever is in thousands_sep). If
# thousands_sep is the empty string, do nothing.
if ($thousands_sep)
{
# Add leading 0's so length($integer) is divisible by 3
$integer = '0'x(3 - (length($integer) % 3)).$integer;
# Split $integer into groups of 3 characters and insert commas
$integer = join($thousands_sep,
grep {$_ ne ''} split(/(...)/, $integer));
# Strip off leading zeroes and optional thousands separator
$integer =~ s/^0+(?:\Q$thousands_sep\E)?//;
}
$integer = '0' if $integer eq '';
# Combine integer and decimal parts and return the result.
my $result = ((defined $decimal && length $decimal) ?
join($decimal_point, $integer, $decimal) :
$integer);
return ($sign < 0) ? $self->format_negative($result) : $result;
}
##----------------------------------------------------------------------
=item format_negative($number, $picture)
Formats a negative number. Picture should be a string that contains
the letter C<x> where the number should be inserted. For example, for
standard negative numbers you might use ``C<-x>'', while for
accounting purposes you might use ``C<(x)>''. If the specified number
begins with a ``-'' character, that will be removed before formatting,
but formatting will occur whether or not the number is negative.
=cut
sub format_negative
{
my($self, $number, $format) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
$format = $self->{neg_format} unless defined $format;
croak "Letter x must be present in picture in format_negative()"
unless $format =~ /x/;
$number =~ s/^-//;
$format =~ s/x/$number/;
return $format;
}
##----------------------------------------------------------------------
=item format_picture($number, $picture)
Returns a string based on C<$picture> with the C<#> characters
replaced by digits from C<$number>. If the length of the integer part
of $number is too large to fit, the C<#> characters are replaced with
asterisks (C<*>) instead. Examples:
format_picture(100.023, 'USD ##,###.##') yields 'USD 100.02'
format_picture(1000.23, 'USD ##,###.##') yields 'USD 1,000.23'
format_picture(10002.3, 'USD ##,###.##') yields 'USD 10,002.30'
format_picture(100023, 'USD ##,###.##') yields 'USD **,***.**'
format_picture(1.00023, 'USD #.###,###') yields 'USD 1.002,300'
The comma (,) and period (.) you see in the picture examples should
match the values of C<THOUSANDS_SEP> and C<DECIMAL_POINT>,
respectively, for proper operation. However, the C<THOUSANDS_SEP>
characters in C<$picture> need not occur every three digits; the
I<only> use of that variable by this function is to remove leading
commas (see the first example above). There may not be more than one
instance of C<DECIMAL_POINT> in C<$picture>.
The value of C<NEG_FORMAT> is used to determine how negative numbers
are displayed. The result of this is that the output of this function
my have unexpected spaces before and/or after the number. This is
necessary so that positive and negative numbers are formatted into a
space the same size. If you are only using positive numbers and want
to avoid this problem, set NEG_FORMAT to "x".
=cut
sub format_picture
{
my ($self, $number, $picture) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
croak "Picture not defined" unless defined($picture);
$self->_check_seps();
# Handle negative numbers
my($neg_prefix) = $self->{neg_format} =~ /^([^x]+)/;
my($pic_prefix) = $picture =~ /^([^\#]+)/;
my $neg_pic = $self->{neg_format};
(my $pos_pic = $self->{neg_format}) =~ s/[^x\s]/ /g;
(my $pos_prefix = $neg_prefix) =~ s/[^x\s]/ /g;
$neg_pic =~ s/x/$picture/;
$pos_pic =~ s/x/$picture/;
my $sign = $number <=> 0;
$number = abs($number) if $sign < 0;
$picture = $sign < 0 ? $neg_pic : $pos_pic;
my $sign_prefix = $sign < 0 ? $neg_prefix : $pos_prefix;
# Split up the picture and die if there is more than one $DECIMAL_POINT
my($pic_int, $pic_dec, @cruft) =
split(/\Q$self->{decimal_point}\E/, $picture);
$pic_int = '' unless defined $pic_int;
$pic_dec = '' unless defined $pic_dec;
croak "Only one decimal separator permitted in picture"
if @cruft;
# Obtain precision from the length of the decimal part...
my $precision = $pic_dec; # start with copying it
$precision =~ s/[^\#]//g; # eliminate all non-# characters
$precision = length $precision; # take the length of the result
# Format the number
$number = $self->round($number, $precision);
# Obtain the length of the integer portion just like we did for $precision
my $intsize = $pic_int; # start with copying it
$intsize =~ s/[^\#]//g; # eliminate all non-# characters
$intsize = length $intsize; # take the length of the result
# Split up $number same as we did for $picture earlier
my($num_int, $num_dec) = split(/\./, $number, 2);
$num_int = '' unless defined $num_int;
$num_dec = '' unless defined $num_dec;
# Check if the integer part will fit in the picture
if (length $num_int > $intsize)
{
$picture =~ s/\#/\*/g; # convert # to * and return it
$pic_prefix = "" unless defined $pic_prefix;
$picture =~ s/^(\Q$sign_prefix\E)(\Q$pic_prefix\E)(\s*)/$2$3$1/;
return $picture;
}
# Split each portion of number and picture into arrays of characters
my @num_int = split(//, $num_int);
my @num_dec = split(//, $num_dec);
my @pic_int = split(//, $pic_int);
my @pic_dec = split(//, $pic_dec);
# Now we copy those characters into @result.
my @result;
@result = ($self->{decimal_point})
if $picture =~ /\Q$self->{decimal_point}\E/;
# For each characture in the decimal part of the picture, replace '#'
# signs with digits from the number.
my $char;
foreach $char (@pic_dec)
{
$char = (shift(@num_dec) || 0) if ($char eq '#');
push (@result, $char);
}
# For each character in the integer part of the picture (moving right
# to left this time), replace '#' signs with digits from the number,
# or spaces if we've run out of numbers.
while ($char = pop @pic_int)
{
$char = pop(@num_int) if ($char eq '#');
$char = ' ' if (!defined($char) ||
$char eq $self->{thousands_sep} && $#num_int < 0);
unshift (@result, $char);
}
# Combine @result into a string and return it.
my $result = join('', @result);
$sign_prefix = '' unless defined $sign_prefix;
$pic_prefix = '' unless defined $pic_prefix;
$result =~ s/^(\Q$sign_prefix\E)(\Q$pic_prefix\E)(\s*)/$2$3$1/;
$result;
}
##----------------------------------------------------------------------
=item format_price($number, $precision, $symbol)
Returns a string containing C<$number> formatted similarly to
C<format_number()>, except that the decimal portion may have trailing
zeroes added to make it be exactly C<$precision> characters long, and
the currency string will be prefixed.
The C<$symbol> attribute may be one of "INT_CURR_SYMBOL" or
"CURRENCY_SYMBOL" (case insensitive) to use the value of that
attribute of the object, or a string containing the symbol to be used.
The default is "INT_CURR_SYMBOL" if this argument is undefined or not
given; if set to the empty string, or if set to undef and the
C<INT_CURR_SYMBOL> attribute of the object is the empty string, no
currency will be added.
If C<$precision> is not provided, the default of 2 will be used.
Examples:
format_price(12.95) yields 'USD 12.95'
format_price(12) yields 'USD 12.00'
format_price(12, 3) yields '12.000'
The third example assumes that C<INT_CURR_SYMBOL> is the empty string.
=cut
sub format_price
{
my ($self, $number, $precision, $curr_symbol) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
# Determine what the monetary symbol should be
$curr_symbol = $self->{int_curr_symbol}
if (!defined($curr_symbol) || lc($curr_symbol) eq "int_curr_symbol");
$curr_symbol = $self->{currency_symbol}
if (!defined($curr_symbol) || lc($curr_symbol) eq "currency_symbol");
$curr_symbol = "" unless defined($curr_symbol);
# Determine which value to use for frac digits
my $frac_digits = ($curr_symbol eq $self->{int_curr_symbol} ?
$self->{int_frac_digits} : $self->{frac_digits});
# Determine precision for decimal portion
$precision = $frac_digits unless defined $precision;
$precision = $self->{decimal_digits} unless defined $precision; # fallback
$precision = 2 unless defined $precision; # default
# Determine sign and absolute value
my $sign = $number <=> 0;
$number = abs($number) if $sign < 0;
# format it first
$number = $self->format_number($number, $precision, undef, 1);
# Now we make sure the decimal part has enough zeroes
my ($integer, $decimal) =
split(/\Q$self->{mon_decimal_point}\E/, $number, 2);
$decimal = '0'x$precision unless $decimal;
$decimal .= '0'x($precision - length $decimal);
# Extract positive or negative values
my($sep_by_space, $cs_precedes, $sign_posn, $sign_symbol);
if ($sign < 0)
{
$sep_by_space = $self->{n_sep_by_space};
$cs_precedes = $self->{n_cs_precedes};
$sign_posn = $self->{n_sign_posn};
$sign_symbol = $self->{negative_sign};
}
else
{
$sep_by_space = $self->{p_sep_by_space};
$cs_precedes = $self->{p_cs_precedes};
$sign_posn = $self->{p_sign_posn};
$sign_symbol = $self->{positive_sign};
}
# Combine it all back together.
my $result = ($precision ?
join($self->{mon_decimal_point}, $integer, $decimal) :
$integer);
# Determine where spaces go, if any
my($sign_sep, $curr_sep);
if ($sep_by_space == 0)
{
$sign_sep = $curr_sep = "";
}
elsif ($sep_by_space == 1)
{
$sign_sep = "";
$curr_sep = " ";
}
elsif ($sep_by_space == 2)
{
$sign_sep = " ";
$curr_sep = "";
}
else
{
croak "Invalid sep_by_space value";
}
# Add sign, if any
if ($sign_posn >= 0 && $sign_posn <= 2)
{
# Combine with currency symbol and return
if ($curr_symbol ne "")
{
if ($cs_precedes)
{
$result = $curr_symbol.$curr_sep.$result;
}
else
{
$result = $result.$curr_sep.$curr_symbol;
}
}
if ($sign_posn == 0)
{
return "($result)";
}
elsif ($sign_posn == 1)
{
return $sign_symbol.$sign_sep.$result;
}
else # $sign_posn == 2
{
return $result.$sign_sep.$sign_symbol;
}
}
elsif ($sign_posn == 3 || $sign_posn == 4)
{
if ($sign_posn == 3)
{
$curr_symbol = $sign_symbol.$sign_sep.$curr_symbol;
}
else # $sign_posn == 4
{
$curr_symbol = $curr_symbol.$sign_sep.$sign_symbol;
}
# Combine with currency symbol and return
if ($cs_precedes)
{
return $curr_symbol.$curr_sep.$result;
}
else
{
return $result.$curr_sep.$curr_symbol;
}
}
else
{
croak "Invalid *_sign_posn value";
}
}
##----------------------------------------------------------------------
=item format_bytes($number, %options)
=item format_bytes($number, $precision) # deprecated
Returns a string containing C<$number> formatted similarly to
C<format_number()>, except that large numbers may be abbreviated by
adding a suffix to indicate 1024, 1,048,576, or 1,073,741,824 bytes.
Suffix may be the traditional K, M, or G (default); or the IEC
standard 60027 "KiB," "MiB," or "GiB" depending on the "mode" option.
Negative values will result in an error.
The second parameter can be either a hash that sets options, or a
number. Using a number here is deprecated and will generate a
warning; early versions of Number::Format only allowed a numeric
value. A future release of Number::Format will change this warning to
an error. New code should use a hash instead to set options. If it
is a number this sets the value of the "precision" option.
Valid options are:
=over 4
=item precision
Set the precision for displaying numbers. If not provided, a default
of 2 will be used. Examples:
format_bytes(12.95) yields '12.95'
format_bytes(12.95, precision => 0) yields '13'
format_bytes(2048) yields '2K'
format_bytes(2048, mode => "iec") yields '2KiB'
format_bytes(9999999) yields '9.54M'
format_bytes(9999999, precision => 1) yields '9.5M'
=item unit
Sets the default units used for the results. The default is to
determine this automatically in order to minimize the length of the
string. In other words, numbers greater than or equal to 1024 (or
other number given by the 'base' option, q.v.) will be divided by 1024
and C<$KILO_SUFFIX> or C<$KIBI_SUFFIX> added; if greater than or equal
to 1048576 (1024*1024), it will be divided by 1048576 and
C<$MEGA_SUFFIX> or C<$MEBI_SUFFIX> appended to the end; etc.
However if a value is given for C<unit> it will use that value
instead. The first letter (case-insensitive) of the value given
indicates the threshhold for conversion; acceptable values are G (for
giga/gibi), M (for mega/mebi), K (for kilo/kibi), or A (for automatic,
the default). For example:
format_bytes(1048576, unit => 'K') yields '1,024K'
instead of '1M'
Note that the valid values to this option do not vary even when the
suffix configuration variables have been changed.
=item base
Sets the number at which the C<$KILO_SUFFIX> is added. Default is
1024. Set to any value; the only other useful value is probably 1000,
as hard disk manufacturers use that number to make their disks sound
bigger than they really are.
If the mode (see below) is set to "iec" or "iec60027" then setting the
base option results in an error.
=item mode
Traditionally, bytes have been given in SI (metric) units such as
"kilo" and "mega" even though they represent powers of 2 (1024, etc.)
rather than powers of 10 (1000, etc.) This "binary prefix" causes
much confusion in consumer products where "GB" may mean either
1,048,576 or 1,000,000, for example. The International
Electrotechnical Commission has created standard IEC 60027 to
introduce prefixes Ki, Mi, Gi, etc. ("kibibytes," "mebibytes,"
"gibibytes," etc.) to remove this confusion. Specify a mode option
with either "traditional" or "iec60027" (or abbreviate as "trad" or
"iec") to indicate which type of binary prefix you want format_bytes
to use. For backward compatibility, "traditional" is the default.
See http://en.wikipedia.org/wiki/Binary_prefix for more information.
=back
=cut
sub format_bytes
{
my ($self, $number, @options) = _get_self @_;
unless (defined($number))
{
_complain_undef();
$number = 0;
}
croak "Negative number not allowed in format_bytes"
if $number < 0;
# If a single scalar is given instead of key/value pairs for
# @options, treat that as the value of the precision option.
my %options;
if (@options == 1)
{
# To be changed to 'croak' in a future release:
carp "format_bytes: number instead of options is deprecated";
%options = ( precision => $options[0] );
}
else
{
%options = @options;
}
# Set default for precision. Test using defined because it may be 0.
$options{precision} = $self->{decimal_digits}
unless defined $options{precision};
$options{precision} = 2
unless defined $options{precision}; # default
$options{mode} ||= "traditional";
my($ksuff, $msuff, $gsuff);
if ($options{mode} =~ /^iec(60027)?$/i)
{
($ksuff, $msuff, $gsuff) =
@$self{qw(kibi_suffix mebi_suffix gibi_suffix)};
croak "base option not allowed in iec60027 mode"
if exists $options{base};
}
elsif ($options{mode} =~ /^trad(itional)?$/i)
{
($ksuff, $msuff, $gsuff) =
@$self{qw(kilo_suffix mega_suffix giga_suffix)};
}
else
{
croak "Invalid mode";
}
# Set default for "base" option. Calculate threshold values for
# kilo, mega, and giga values. On 32-bit systems tera would cause
# overflows so it is not supported. Useful values of "base" are
# 1024 or 1000, but any number can be used. Larger numbers may
# cause overflows for giga or even mega, however.
my %mult = _get_multipliers($options{base});
# Process "unit" option. Set default, then take first character
# and convert to upper case.
$options{unit} = "auto"
unless defined $options{unit};
my $unit = uc(substr($options{unit},0,1));
# Process "auto" first (default). Based on size of number,
# automatically determine which unit to use.
if ($unit eq 'A')
{
if ($number >= $mult{giga})
{
$unit = 'G';
}
elsif ($number >= $mult{mega})
{
$unit = 'M';
}
elsif ($number >= $mult{kilo})
{
$unit = 'K';
}
else
{
$unit = 'N';
}
}
# Based on unit, whether specified or determined above, divide the
# number and determine what suffix to use.
my $suffix = "";
if ($unit eq 'G')
{
$number /= $mult{giga};
$suffix = $gsuff;
}
elsif ($unit eq 'M')
{
$number /= $mult{mega};
$suffix = $msuff;
}
elsif ($unit eq 'K')
{
$number /= $mult{kilo};
$suffix = $ksuff;
}
elsif ($unit ne 'N')
{
croak "Invalid unit option";
}
# Format the number and add the suffix.
return $self->format_number($number, $options{precision}) . $suffix;
}
##----------------------------------------------------------------------
=item unformat_number($formatted)
Converts a string as returned by C<format_number()>,
C<format_price()>, or C<format_picture()>, and returns the
corresponding value as a numeric scalar. Returns C<undef> if the
number does not contain any digits. Examples:
unformat_number('USD 12.95') yields 12.95
unformat_number('USD 12.00') yields 12
unformat_number('foobar') yields undef
unformat_number('1234-567@.8') yields 1234567.8
The value of C<DECIMAL_POINT> is used to determine where to separate
the integer and decimal portions of the input. All other non-digit
characters, including but not limited to C<INT_CURR_SYMBOL> and
C<THOUSANDS_SEP>, are removed.
If the number matches the pattern of C<NEG_FORMAT> I<or> there is a
``-'' character before any of the digits, then a negative number is
returned.
If the number ends with the C<KILO_SUFFIX>, C<KIBI_SUFFIX>,
C<MEGA_SUFFIX>, C<MEBI_SUFFIX>, C<GIGA_SUFFIX>, or C<GIBI_SUFFIX>
characters, then the number returned will be multiplied by the
appropriate multiple of 1024 (or if the base option is given, by the
multiple of that value) as appropriate. Examples:
unformat_number("4K", base => 1024) yields 4096
unformat_number("4K", base => 1000) yields 4000
unformat_number("4KiB", base => 1024) yields 4096
unformat_number("4G") yields 4294967296
=cut
sub unformat_number
{
my ($self, $formatted, %options) = _get_self @_;
unless (defined($formatted))
{
_complain_undef();
$formatted = "";
}
$self->_check_seps();
return undef unless $formatted =~ /\d/; # require at least one digit
# Regular expression for detecting decimal point
my $pt = qr/\Q$self->{decimal_point}\E/;
# ru_RU locale has comma for decimal_point, but period for
# mon_decimal_point! But as long as thousands_sep is different
# from either, we can allow either decimal point.
if ($self->{mon_decimal_point} &&
$self->{decimal_point} ne $self->{mon_decimal_point} &&
$self->{decimal_point} ne $self->{mon_thousands_sep} &&
$self->{mon_decimal_point} ne $self->{thousands_sep})
{
$pt = qr/(?:\Q$self->{decimal_point}\E|
\Q$self->{mon_decimal_point}\E)/x;
}
# Detect if it ends with one of the kilo / mega / giga suffixes.
my $kp = ($formatted =~
s/\s*($self->{kilo_suffix}|$self->{kibi_suffix})\s*$//);
my $mp = ($formatted =~
s/\s*($self->{mega_suffix}|$self->{mebi_suffix})\s*$//);
my $gp = ($formatted =~
s/\s*($self->{giga_suffix}|$self->{gibi_suffix})\s*$//);
my %mult = _get_multipliers($options{base});
# Split number into integer and decimal parts
my ($integer, $decimal, @cruft) = split($pt, $formatted);
croak "Only one decimal separator permitted"
if @cruft;
# It's negative if the first non-digit character is a -
my $sign = $formatted =~ /^\D*-/ ? -1 : 1;
my($before_re, $after_re) = split /x/, $self->{neg_format}, 2;
$sign = -1 if $formatted =~ /\Q$before_re\E(.+)\Q$after_re\E/;
# Strip out all non-digits from integer and decimal parts
$integer = '' unless defined $integer;
$decimal = '' unless defined $decimal;
$integer =~ s/\D//g;
$decimal =~ s/\D//g;
# Join back up, using period, and add 0 to make Perl think it's a number
my $number = join('.', $integer, $decimal) + 0;
$number = -$number if $sign < 0;
# Scale the number if it ended in kilo or mega suffix.
$number *= $mult{kilo} if $kp;
$number *= $mult{mega} if $mp;
$number *= $mult{giga} if $gp;
return $number;
}
###---------------------------------------------------------------------
=back
=head1 CAVEATS
Some systems, notably OpenBSD, may have incomplete locale support.
Using this module together with L<setlocale(3)> in OpenBSD may therefore
not produce the intended results.
=head1 BUGS
No known bugs at this time. Report bugs using the CPAN request
tracker at L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=Number-Format>
or by email to the author.
=head1 AUTHOR
William R. Ward, SwPrAwM@cpan.org (remove "SPAM" before sending email,
leaving only my initials)
=head1 SEE ALSO
perl(1).
=cut
1;
|