|
PerlIO::via::PinyinConvert - PerlIO layer for Lingua::ZH::PinyinConvert |
PerlIO::via::PinyinConvert - PerlIO layer for Lingua::ZH::PinyinConvert
use PerlIO::via::PinyinConvert from => "tongyong", to => "hanyu"; binmode(STDOUT, ":via(PinyinConvert)"); print 'ni hao ma?';
the PerlIO::via::PinyinConvert manpage is a layer for Lingua::ZH::PinyinConvert. Users can combine this with the Text::Unidecode manpage.
use utf8;
use Text::Unidecode;
use PerlIO::via::PinyinConvert from => "hanyu", to => "tongyong";
print unidecode(
"\x{5317}\x{4EB0}\n"
);
the Lingua::ZH::PinyinConvert manpage
xern <xern@cpan.org>
This module is free software; you can redistribute it or modify it under the same terms as Perl itself.
|
PerlIO::via::PinyinConvert - PerlIO layer for Lingua::ZH::PinyinConvert |