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

..03-May-2022-

t/H03-Nov-2017-859784

ChangesH A D03-Nov-20172.7 KiB8261

MANIFESTH A D03-Nov-2017422 2019

MANIFEST.XH A D03-Nov-2017436 2019

META.jsonH A D03-Nov-20171.1 KiB5049

META.ymlH A D03-Nov-2017686 3130

Makefile.PLH A D03-Nov-2017714 3227

READMEH A D03-Nov-20171.3 KiB5639

Util.pmH A D03-Nov-201720.5 KiB752425

Util.pmXH A D03-Nov-20178.7 KiB321212

Util.xsXH A D03-Nov-201717.5 KiB873798

disableXSH A D03-Nov-2017400 1510

enableXSH A D03-Nov-2017399 1510

mkheaderH A D03-Nov-20178.2 KiB311280

README

1Lingua/KO/Hangul/Util version 0.28
2==================================
3
4SYNOPSIS
5
6  use Lingua::KO::Hangul::Util qw(:all);
7
8  decomposeSyllable("\x{AC00}");          # "\x{1100}\x{1161}"
9  composeSyllable("\x{1100}\x{1161}");    # "\x{AC00}"
10  decomposeJamo("\x{1101}");              # "\x{1100}\x{1100}"
11  composeJamo("\x{1100}\x{1100}");        # "\x{1101}"
12
13  getHangulName(0xAC00);                  # "HANGUL SYLLABLE GA"
14  parseHangulName("HANGUL SYLLABLE GA");  # 0xAC00
15
16INSTALLATION
17
18Perl 5.6.1 or later is required.
19Perl 5.8.1 or later is recommended.
20
21To install this module type the following:
22
23   perl Makefile.PL
24   make
25   make test
26   make install
27
28If you have a C compiler and want to use XSUB,
29type the following (!! "enableXS" must run before "Makefile.PL" !!):
30
31   perl enableXS
32   perl Makefile.PL
33   make
34   make test
35   make install
36
37If you decide to install pure Perl (i.e. non-XS) after trying
38to build XSUB, type the following:
39
40   make clean
41   perl disableXS
42   perl Makefile.PL
43   make
44   make test
45   make install
46
47COPYRIGHT AND LICENSE
48
49SADAHIRO Tomoyuki <SADAHIRO@cpan.org>
50
51Copyright(C) 2001, 2003, 2005, SADAHIRO Tomoyuki. Japan.
52All rights reserved.
53
54This module is free software; you can redistribute it and/or
55modify it under the same terms as Perl itself.
56