Jcode - Japanese Charset Handler |
Jcode - Japanese Charset Handler
use Jcode; # # traditional Jcode::convert(\$str, $ocode, $icode, "z"); # or OOP! print Jcode->new($str)->h2z->tr($from, $to)->utf8;
Jcode.pm supports both object and traditional approach. With object approach, you can go like;
$iso_2022_jp = Jcode->new($str)->h2z->jis;
Which is more elegant than;
$iso_2022_jp = &jcode::convert(\$str,'jis',jcode::getcode(\str), ``z'');
For those unfamiliar with objects, Jcode.pm still supports getcode()
and convert().
Methods mentioned here all return Jcode object unless otherwise mentioned.
The object keeps the string in EUC format enternaly. When the object itself is evaluated, it returns the EUC-converted string so you can ``print $j;'' without calling access method if you are using EUC (thanks to function overload).
Jcode->new(\$str);
This saves time a little bit. In exchange of the value of $str being converted. (In a way, $str is now ``tied'' to jcode object).
# converts mailbox to SJIS format my $jconv = new Jcode; $/ = 00; while(<>){ print $jconv->set(\$_)->mime_decode->sjis; }
new()
so you can go like;
$sjis = jcode($str)->sjis;
To use methods below, you need MIME::Base64. To install, simply
perl -MCPAN -e 'CPAN::Shell->install("MIME::Base64")'
You can retrieve the number of matches via $j->nmatch;
Methods below are actually implemented in Jcode::H2Z.
You can retrieve the number of matches via $j->nmatch;
You can retrieve the number of matches via $j->nmatch;
Methods here are actually implemented in Jcode::Tr.
You can retrieve the number of matches via $j->nmatch;
If your perl does not support XS (or you can't perl Makefile.PL
,
Jcode::Unicode::NoXS will be used.
See the Jcode::Unicode manpage and the Jcode::Unicode::NoXS manpage for details
If you need to access instance variables of Jcode object, use access methods below instead of directly accessing them (That's what OOP is all about)
FYI, Jcode uses a ref to array instead of ref to hash (common way) to optimize speed (Actually you don't have to know as long as you use access methods instead; Once again, that's OOP)
ascii Ascii (Contains no Japanese Code) binary Binary (Not Text File) euc EUC-JP sjis SHIFT_JIS jis JIS (ISO-2022-JP) ucs2 UCS2 (Raw Unicode) utf8 UTF8
When array context is used instead of scaler, it also returns how many character codes are found. As mentioned above, $str can be \$str instead.
jcode.pl Users: This function is 100% upper-conpatible with jcode::getcode() -- well, almost;
* When its return value is an array, the order is the opposite; jcode::getcode() returns $nmatch first.
* jcode::getcode() returns 'undef' when the number of EUC characters is equal to that of SJIS. Jcode::getcode() returns EUC. for Jcode.pm there is no in-betweens.
jcode.pl Users: This function is 100% upper-conpatible with jcode::convert() !
Unicode support by Jcode is far from efficient!
Hopefully Jcode will be superceded by Encode module that is part of the standard module on Perl 5.7 and up
This package owes a lot in motivation, design, and code, to the jcode.pl for Perl4 by Kazumasa Utashiro <utashiro@iij.ad.jp>.
Hiroki Ohzaki <ohzaki@iod.ricoh.co.jp> has helped me polish regexp from the very first stage of development.
And folks at Jcode Mailing list <jcode5@ring.gr.jp>. Without them, I couldn't have coded this far.
the Jcode::Unicode::NoXS manpage
http://www.iana.org/assignments/character-sets
Copyright 1999 Dan Kogai <dankogai@dan.co.jp>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Jcode - Japanese Charset Handler |