summaryrefslogtreecommitdiff
path: root/fml/lib/FML/Language/Japanese/String.pm
diff options
context:
space:
mode:
authorfukachan <fukachan>2001-07-31 14:13:08 +0000
committerfukachan <fukachan>2001-07-31 14:13:08 +0000
commita5e69b8227d0918f554fa83b476ace8cf1834b7d (patch)
tree561b80d03a5969ff2d56eeae7e4ff266235fca04 /fml/lib/FML/Language/Japanese/String.pm
parentd786264cf627e9f4ff1f660564f1a9bba9b294d8 (diff)
downloadfml8-snap-20010731.tar.gz
fml8-snap-20010731.tar.bz2
fml8-snap-20010731.zip
rename FML::NL to FML::Languagesnap-20010731
Diffstat (limited to 'fml/lib/FML/Language/Japanese/String.pm')
-rw-r--r--fml/lib/FML/Language/Japanese/String.pm90
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;