TEXTENCODE
http://www.mhonarc.org/MHonArc/doc/resources/textencode.html
内部での Encoding 方法を指定する。Filter としては、何も加えないときには:
MHonArc::UTF8::to_utf8
MHonArc::Encode::from_to
の二つが利用出来る。この二つ目を使う時には次のどちらかが必要。
-
Perl 5.8
-
Unicode::MapUTF8: Unicode::MapUTF8 is available via CPAN,
例えば
<TextEncode>
utf-8; MHonArc::UTF8::to_utf8; MHonArc/UTF8.pm
</TextEncode>
のように書くと変換後の charset は UTF8 になる
もし自分で用意するなら次のように書く
sub text_encoder {
my($text_ref, $from_charset, $to_charset) = @_;
# code here
# The last statement should be the return value, unless an
# explicit return is done. See the following for the format of the
# return value.
}
|