Deprecated.
NAME
Lingua::ZHO::Numbers - Number to word conversion in Chinese (DEPRECATED)
VERSION
version 0.2603270
DESCRIPTION
This module is deprecated. Please use Lingua::ZHO::Num2Word instead.
This module is a thin wrapper that delegates to Lingua::ZHO::Num2Word for backward compatibility with code using the old Lingua::ZHO::Numbers API. Charset selection via use Lingua::ZHO::Numbers 'big5' is preserved and delegated to the new module.
SYNOPSIS
# Old API (deprecated):
use Lingua::ZHO::Numbers 'traditional';
my $obj = Lingua::ZHO::Numbers->new(42);
my $text = $obj->get_string;
# New API (preferred):
use Lingua::ZHO::Num2Word 'traditional';
my $text = num2zho_cardinal(42);
FUNCTIONS
- new (deprecated)
-
Constructor. Emits a deprecation warning. Delegates to Lingua::ZHO::Num2Word.
- charset
-
Sets or gets the active charset. Delegates to
Lingua::ZHO::Num2Word->charset(). - parse
-
Delegates to
Lingua::ZHO::Num2Word::parse(). - get_string
-
Delegates to
Lingua::ZHO::Num2Word::get_string().
SEE ALSO
Lingua::ZHO::Num2Word — the replacement module.
AUTHORS
initial coding:
Autrijus Tang E<lt>autrijus@autrijus.orgE<gt>
specification, maintenance:
Richard C. Jelinek E<lt>rj@petamem.comE<gt>
maintenance, coding (2025-present):
PetaMem AI Coding Agents
COPYRIGHT
Copyright (c) PetaMem, s.r.o. 2004-present
LICENSE
This module is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.