• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H03-May-2022-12,37810,634

t/H03-May-2022-873,822868,253

ChangesH A D30-Oct-20204 KiB136110

LICENSEH A D30-Oct-202020.1 KiB397324

MANIFESTH A D30-Oct-202025.3 KiB930929

META.jsonH A D30-Oct-20201.9 KiB7170

META.ymlH A D30-Oct-2020578 2827

Makefile.PLH A D30-Oct-2020645 2522

READMEH A D30-Oct-20203.8 KiB11792

README2NDH A D30-Oct-20201.9 KiB6044

jacode.sjis.mdH A D30-Oct-202023.9 KiB917591

pmake.batH A D30-Oct-202047.8 KiB1,3431,162

README

1NAME
2
3jacode - Perl program for Japanese character code conversion
4
5SYNOPSIS
6
7    require 'jacode.pl';
8
9    # note: You can use either of the package of 'jcode' and 'jacode'
10
11    jacode::convert(\$line, $OUTPUT_encoding [, $INPUT_encoding [, $option]])
12    jacode::xxx2yyy(\$line [, $option])
13    jacode::to($OUTPUT_encoding, $line [, $INPUT_encoding [, $option]])
14    jacode::jis($line [, $INPUT_encoding [, $option]])
15    jacode::euc($line [, $INPUT_encoding [, $option]])
16    jacode::sjis($line [, $INPUT_encoding [, $option]])
17    jacode::utf8($line [, $INPUT_encoding [, $option]])
18    jacode::jis_inout($JIS_Kanji_IN, $ASCII_IN)
19    jacode::get_inout($string)
20    jacode::cache()
21    jacode::nocache()
22    jacode::flushcache()
23    jacode::flush()
24    jacode::h2z_xxx(\$line)
25    jacode::z2h_xxx(\$line)
26    jacode::getcode(\$line)
27    jacode::tr(\$line, $from, $to [, $option])
28    jacode::trans($line, $from, $to [, $option])
29    jacode::init()
30    $jacode::convf{'xxx', 'yyy'}
31    $jacode::z2hf{'xxx'}
32    $jacode::h2zf{'xxx'}
33
34    &jcode'convert(*line, $OUTPUT_encoding [, $INPUT_encoding [, $option]])
35    &jcode'xxx2yyy(*line [, $option])
36    &jcode'to($OUTPUT_encoding, $line [, $INPUT_encoding [, $option]])
37    &jcode'jis($line [, $INPUT_encoding [, $option]])
38    &jcode'euc($line [, $INPUT_encoding [, $option]])
39    &jcode'sjis($line [, $INPUT_encoding [, $option]])
40    &jcode'utf8($line [, $INPUT_encoding [, $option]])
41    &jcode'jis_inout($JIS_Kanji_IN, $ASCII_IN)
42    &jcode'get_inout($string)
43    &jcode'cache()
44    &jcode'nocache()
45    &jcode'flushcache()
46    &jcode'flush()
47    &jcode'h2z_xxx(*line)
48    &jcode'z2h_xxx(*line)
49    &jcode'getcode(*line)
50    &jcode'tr(*line, $from, $to [, $option])
51    &jcode'trans($line, $from, $to [, $option])
52    &jcode'init()
53    $jcode'convf{'xxx', 'yyy'}
54    $jcode'z2hf{'xxx'}
55    $jcode'h2zf{'xxx'}
56
57ABSTRACT
58
59    This software has upper compatibility to jcode.pl and multiple inheritance
60    both stable jcode.pl library and active Encode module.
61
62    * jcode.pl upper compatible
63    * pkf command upper compatible
64    * Perl4 script also Perl5 script
65    * Powered by Encode::from_to (Yes, not only Japanese!)
66    * future-proof software
67    * Support HALFWIDTH KATAKANA
68    * Support UTF-8 by cp932 to Unicode table
69        http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP932.TXT
70        http://support.microsoft.com/kb/170559/ja
71        (JIS X 0221:2007 BASIC JAPANESE and COMMON JAPANESE)
72    * Hidden UTF8 flag
73    * No Object oriented
74    * Maintain the traditional programming
75
76INSTALLATION
77
78   To test this software, type the following:
79
80   make test
81
82   To install this software, copy 'jacode.pl' to any directory of @INC.
83
84DEPENDENCIES
85
86    This software requires perl 4.036 or later.
87
88AUTHOR
89
90    Copyright (c) 1992,1993,1994 Kazumasa Utashiro
91    Copyright (c) 1995-2000 Kazumasa Utashiro
92    Copyright (c) 2002 Kazumasa Utashiro
93    Copyright (c) 2010, 2011, 2014, 2015, 2016, 2017, 2018, 2019, 2020 INABA Hitoshi
94
95SEE ALSO
96
97    jcode.pl: Perl library for Japanese character code conversion, Kazumasa Utashiro
98    https://metacpan.org/author/UTASHIRO
99    ftp://ftp.iij.ad.jp/pub/IIJ/dist/utashiro/perl/
100    http://web.archive.org/web/20090608090304/http://srekcah.org/jcode/
101    ftp://ftp.oreilly.co.jp/pcjp98/utashiro/
102    http://mail.pm.org/pipermail/tokyo-pm/2002-March/001319.html
103    https://twitter.com/uta46/status/11578906320
104
105    jacode - Perl program for Japanese character code conversion
106    https://metacpan.org/search?q=jacode.pl
107
108    Jacode4e - jacode.pl-like program for enterprise
109    https://metacpan.org/pod/Jacode4e
110
111    Jacode4e::RoundTrip - Jacode4e for round-trip conversion in JIS X 0213
112    https://metacpan.org/pod/Jacode4e::RoundTrip
113
114    Modern::Open - Autovivification, Autodie, and 3-args open support
115    https://metacpan.org/pod/Modern::Open
116
117

README2ND

1NAME
2
3Jacode - Perl program for Japanese character code conversion
4
5SYNOPSIS
6
7    use FindBin;
8    use lib "$FindBin::Bin/lib";
9    use Jacode;
10
11    Jacode::convert(\$line, $OUTPUT_encoding [, $INPUT_encoding [, $option]])
12    Jacode::xxx2yyy(\$line [, $option])
13    Jacode::to($OUTPUT_encoding, $line [, $INPUT_encoding [, $option]])
14    Jacode::jis($line [, $INPUT_encoding [, $option]])
15    Jacode::euc($line [, $INPUT_encoding [, $option]])
16    Jacode::sjis($line [, $INPUT_encoding [, $option]])
17    Jacode::utf8($line [, $INPUT_encoding [, $option]])
18    Jacode::jis_inout($JIS_Kanji_IN, $ASCII_IN)
19    Jacode::get_inout($string)
20    Jacode::cache()
21    Jacode::nocache()
22    Jacode::flushcache()
23    Jacode::flush()
24    Jacode::h2z_xxx(\$line)
25    Jacode::z2h_xxx(\$line)
26    Jacode::tr(\$line, $from, $to [, $option])
27    Jacode::trans($line, $from, $to [, $option])
28    Jacode::init()
29
30INSTALLATION
31
32   To test this software, type the following:
33
34   make test
35
36   To install this software, copy 'Jacode.pm' to any directory of @INC.
37
38SEE ALSO
39
40    jcode.pl: Perl library for Japanese character code conversion, Kazumasa Utashiro
41    https://metacpan.org/author/UTASHIRO
42    ftp://ftp.iij.ad.jp/pub/IIJ/dist/utashiro/perl/
43    http://web.archive.org/web/20090608090304/http://srekcah.org/jcode/
44    ftp://ftp.oreilly.co.jp/pcjp98/utashiro/
45    http://mail.pm.org/pipermail/tokyo-pm/2002-March/001319.html
46    https://twitter.com/uta46/status/11578906320
47
48    jacode - Perl program for Japanese character code conversion
49    https://metacpan.org/search?q=jacode.pl
50
51    Jacode4e - jacode.pl-like program for enterprise
52    https://metacpan.org/pod/Jacode4e
53
54    Jacode4e::RoundTrip - Jacode4e for round-trip conversion in JIS X 0213
55    https://metacpan.org/pod/Jacode4e::RoundTrip
56
57    Modern::Open - Autovivification, Autodie, and 3-args open support
58    https://metacpan.org/pod/Modern::Open
59
60