NAME
Lingua::Han::Cantonese - Retrieve the Cantonese(GuangDongHua) of Chinese character(HanZi).
SYNOPSIS
my
$h2p
= new Lingua::Han::Cantonese();
$h2p
->han2Cantonese(
"我"
);
# ngo
my
@result
=
$h2p
->han2Cantonese(
"爱你"
);
# @result = ('ngoi', 'nei');
# we can set the tone up
my
$h2p
= new Lingua::Han::Cantonese(
tone
=> 1);
$h2p
->han2Cantonese(
"我"
);
#ngo5
my
@result
=
$h2p
->han2Cantonese(
"爱你"
);
# @result = ('ngoi3', 'nei5');
$h2p
->han2Cantonese(
"林道"
);
#lam4dou3
$h2p
->han2Cantonese(
"I love 余瑞华 a"
);
#i love jyu4seoi6waa4 a
DESCRIPTION
Retrieve the Cantonese(GuangDongHua) of Chinese character(HanZi).
RETURN VALUE
Usually, it returns its Cantonese/spell. It includes more than 20,000 words (from Unicode.org Unihan.txt, version 4.1.0).
if not(I mean it's not a Chinese character), returns the original word;
OPTION
SEE ALSO
Unicode::Unihan, Lingua::Han::PinYin
AUTHOR
Fayland Lam, <fayland at gmail.com>
BUGS
Please report any bugs or feature requests to bug-lingua-han-cantonese at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Lingua-Han-Cantonese. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Lingua::Han::Cantonese
You can also look for information at:
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
RT: CPAN's request tracker
http://rt.cpan.org/NoAuth/Bugs.html?Dist=Lingua-Han-Cantonese
Search CPAN
ACKNOWLEDGEMENTS
COPYRIGHT & LICENSE
Copyright 2005 Fayland Lam, all rights reserved.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.