diff options
Diffstat (limited to 'fml/lib/FML/Language/Japanese/String.pm')
| -rw-r--r-- | fml/lib/FML/Language/Japanese/String.pm | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/fml/lib/FML/Language/Japanese/String.pm b/fml/lib/FML/Language/Japanese/String.pm new file mode 100644 index 00000000..7346f40e --- /dev/null +++ b/fml/lib/FML/Language/Japanese/String.pm @@ -0,0 +1,90 @@ +#-*- 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. +# +# $FML: String.pm,v 1.2 2001/06/10 10:22:46 fukachan Exp $ +# + +package FML::NL::Japanese::String; +use strict; +use Carp; +use vars qw(@ISA @EXPORT @EXPORT_OK); + +=head1 NAME + +FML::NL::Japanese::String -- utilities to manipulate strings + +=head1 SYNOPSIS + + use FML::NL::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 + +FML::NL::Japanese::String appeared in fml5 mailing list driver package. +See C<http://www.fml.org/> for more details. + +=cut + +1; |
