PerlIO::via::PinyinConvert - PerlIO layer for Lingua::ZH::PinyinConvert


NAME

PerlIO::via::PinyinConvert - PerlIO layer for Lingua::ZH::PinyinConvert


SYNOPSIS

  use PerlIO::via::PinyinConvert from => "tongyong", to => "hanyu";
  binmode(STDOUT, ":via(PinyinConvert)");
  print 'ni hao ma?';


DESCRIPTION

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"
                  );


SEE ALSO

the Lingua::ZH::PinyinConvert manpage

the Text::Unidecode manpage


COPYRIGHT

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