Upgrade to Unicode::Normalize 0.12.
[p5sagit/p5-mst-13.2.git] / ext / Unicode / Normalize / README
1 Unicode/Normalize version 0.12
2 ===================================
3
4 Unicode::Normalize - normalized forms of Unicode text
5
6 SYNOPSIS
7
8   use Unicode::Normalize;
9
10   $string_NFD  = NFD($string);  # Normalization Form D
11   $string_NFC  = NFC($string);  # Normalization Form C
12   $string_NFKD = NFKD($string); # Normalization Form KD
13   $string_NFKC = NFKC($string); # Normalization Form KC
14
15    or
16
17   use Unicode::Normalize 'normalize';
18
19   $string_NFD  = normalize('D',  $string);  # Normalization Form D
20   $string_NFC  = normalize('C',  $string);  # Normalization Form C
21   $string_NFKD = normalize('KD', $string);  # Normalization Form KD
22   $string_NFKC = normalize('KC', $string);  # Normalization Form KC
23
24 INSTALLATION
25
26 Perl 5.006 or later
27
28 To install this module type the following:
29
30    perl Makefile.PL
31    make
32    make test
33    make install
34
35 If you have a C compiler and want to use the XS version,
36 type the following:
37
38    perl Makefile.PL xs
39    make
40    make test
41    make install
42
43 DEPENDENCIES
44
45 This module requires these other modules and libraries:
46
47 Carp
48 Exporter
49 File::Copy
50 File::Spec
51 unicore/CombiningClass.pl or unicode/CombiningClass.pl
52 unicore/Decomposition.pl  or unicode/Decomposition.pl
53 unicore/CompExcl.txt      or unicode/CompExcl.txt
54
55 and for the Non-XS version, in addition to the above,
56 Lingua::KO::Hangul::Util 0.06
57
58 COPYRIGHT AND LICENCE
59
60 SADAHIRO Tomoyuki, E<lt>SADAHIRO@cpan.orgE<gt>
61
62   http://homepage1.nifty.com/nomenclator/perl/
63
64   Copyright(C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved.
65
66   This program is free software; you can redistribute it and/or 
67   modify it under the same terms as Perl itself.
68