diff options
| author | fukachan <fukachan> | 2001-03-20 12:00:41 +0000 |
|---|---|---|
| committer | fukachan <fukachan> | 2001-03-20 12:00:41 +0000 |
| commit | c671b63cd92e62d1a6aedc3add7843e67868fc8b (patch) | |
| tree | ccfe443f1599d2c9fce68a2421b2d367c6daacfc /fml/lib/Language/Japanese/String.pm | |
| parent | 110d337a58d4952b1161bc2e70ba368ca83df8e0 (diff) | |
| download | fml8-snap-20010320.tar.gz fml8-snap-20010320.tar.bz2 fml8-snap-20010320.zip | |
s/Dialect/Language/snap-20010320
Diffstat (limited to 'fml/lib/Language/Japanese/String.pm')
| -rw-r--r-- | fml/lib/Language/Japanese/String.pm | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/fml/lib/Language/Japanese/String.pm b/fml/lib/Language/Japanese/String.pm new file mode 100644 index 00000000..4e748e4b --- /dev/null +++ b/fml/lib/Language/Japanese/String.pm @@ -0,0 +1,91 @@ +#-*- perl -*- +# +# Copyright (C) 2000 Ken'ichi Fukamachi +# All rights reserved. This program is free software; you can +# redistribute it and/or modify it under the same terms as Perl itself. +# +# $Id$ +# $FML$ +# + +package Dialect::Japanese::String; +use strict; +use Carp; +use vars qw(@ISA @EXPORT @EXPORT_OK); + +=head1 NAME + +Dialect::Japanese::String -- utilities to manipulate strings + +=head1 SYNOPSIS + + use Dialect::Japanese::String qw(STR2JIS); + $euc_str = STR2JIS($str); + +=head1 METHOD + +=head2 C<STR2JIS(string)> + +convert CHARSET of the given string to JIS. + +=head2 C<STR2EUC(string)> + +convert CHARSET of the given string to EUC. + +=head2 C<STR2SJIS(string)> + +convert CHARSET of the given string to SJIS. + +=cut + + +require Exporter; +@ISA = qw(Exporter); +@EXPORT_OK = qw(STR2JIS STR2EUC STR2SJIS); + +use Jcode; + + +sub STR2EUC +{ + my ($str) = @_; + &Jcode::convert(\$str, 'euc'); + $str; +} + + +sub STR2JIS +{ + my ($str) = @_; + &Jcode::convert(\$str, 'jis'); + $str; +} + + +sub STR2SJIS +{ + my ($str) = @_; + &Jcode::convert(\$str, 'sjis'); + $str; +} + + +=head1 AUTHOR + +Ken'ichi Fukamachi + +=head1 COPYRIGHT + +Copyright (C) 2001 Ken'ichi Fukamachi + +All rights reserved. This program is free software; you can +redistribute it and/or modify it under the same terms as Perl itself. + +=head1 HISTORY + +Dialect::Japanese::String appeared in fml5 mailing list driver package. +See C<http://www.fml.org/> for more details. + +=cut + +1; |
