-
-
08 Sep 2004 15:33:47 UTC
- Distribution: Lingua-ZH-Numbers
- Module version: 0.04
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (2)
- Testers (1661 / 636 / 0)
- Kwalitee
Bus factor: 1- 69.89% Coverage
- License: perl_5
- Activity
24 month- Tools
- Download (12.25KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Lingua::ZH::Numbers - Converts numeric values into their Chinese string equivalents
VERSION
This document describes version 0.04 of Lingua::ZH::Numbers, released September 8, 2004.
SYNOPSIS
# OO Style use Lingua::ZH::Numbers 'pinyin'; my $shuzi = Lingua::ZH::Numbers->new( 123 ); print $shuzi->get_string; my $lingyige_shuzi = Lingua::ZH::Numbers->new; $lingyige_shuzi->parse( 7340 ); $chinese_string = $lingyige_shuzi->get_string; # Function style print number_to_zh( 345 ); # automatically exported # Change output format Lingua::ZH::Numbers->charset('big5');
DESCRIPTION
This module tries to convert a number into Chinese cardinal number. It supports decimals number, and five representation systems (charsets):
traditional
,simplified
,big5
,gb
andpinyin
. The first two are returned as unicode strings; hence they are only available for Perl 5.6 and later versions.The interface conforms to the one defined in Lingua::EN::Number, but you can also use this module in a functionnal manner by invoking the
number_to_zh()
function.SEE ALSO
ACKNOWLEDGMENTS
Sean Burke for suggesting me to write this module.
AUTHORS
Autrijus Tang <autrijus@autrijus.org>
COPYRIGHT
Copyright 2002, 2003, 2004 by Autrijus Tang <autrijus@autrijus.org>.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Lingua::ZH::Numbers, copy and paste the appropriate command in to your terminal.
cpanm Lingua::ZH::Numbers
perl -MCPAN -e shell install Lingua::ZH::Numbers
For more information on module installation, please visit the detailed CPAN module installation guide.