From:
[email protected]
Newsgroups: comp.lang.perl.announce,comp.lang.perl.modules
Subject: ANNOUNCE: Number::Format released
Followup-To: comp.lang.perl.modules
Date: 27 Feb 1998 16:12:03 GMT
Organization: Bay View Consulting Services
Lines: 64
Sender:
[email protected]
Approved:
[email protected] (comp.lang.perl.announce)
Message-ID: <
[email protected]>
NNTP-Posting-Host: gadget.cscaper.com
X-Disclaimer: The "Approved" header verifies header information for article transmission and does not imply approval of content.
Path: usenet.cise.ufl.edu!huron.eel.ufl.edu!usenet.eel.ufl.edu!nntp1.jpl.nasa.gov!news.spies.com!news.sgi.com!nntprelay.mathworks.com!logbridge.uoregon.edu!nntp.teleport.com!news.teleport.com!not-for-mail
Xref: usenet.cise.ufl.edu comp.lang.perl.announce:86 comp.lang.perl.modules:2288
Announcing the release of the Number::Format module. Now available from
CPAN. Here is the README file:
Number::Format - Convert numbers to strings with pretty formatting
Version: 1.10
WHAT IS IT
Number::Format is a library for formatting numbers. Functions are
provided for converting numbers to strings in a variety of ways, and to
convert strings that contain numbers back into numeric form. The output
formats may include thousands separators - characters inserted between
each group of three characters counting right to left from the decimal
point. The characters used for the decimal point and the thousands
separator come from the locale information or can be specified by the
user.
Also of note is the format_picture command which converts a number into
a string using a "picture" string that you provide. This is similar to
the PRINT USING statement that some versions of BASIC have.
BUILDING/INSTALLING
This package is set up to configure and build like a typical Perl
extension. To build:
perl Makefile.PL
make && make test && make install
make install
NOTE: You may need super-user access to install.
PROBLEMS/BUG REPORTS
Please send any reports of problems or bugs to
[email protected].
CREDITS AND LICENSES
This package is copyright 1997-8 by William R. Ward <
[email protected]>
and may be distributed under terms of the Artistic License used to cover
Perl itself. See the file Artistic in the distribution of Perl 5.002 or
later for details of copy and distribution terms.
CHANGE HISTORY
This is version 1.10:
* Add object oriented interface and support for POSIX locales.
* NOTE: Some aspects of the API have changed. Please reread the
documentation carefully if you used 1.0 previously!!!
Initial version 1.0:
* Limited release beta version.