Test miscounting.
[p5sagit/p5-mst-13.2.git] / lib / Unicode / Normalize / README
1 Unicode/Normalize version 0.04
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 To install this module type the following:
27
28    perl Makefile.PL
29    make
30    make test
31    make install
32
33 DEPENDENCIES
34
35 This module requires these other modules and libraries:
36
37 Carp
38 Exporter
39 File::Spec
40 Lingua::KO::Hangul::Util
41 $unidir/CombiningClass.pl
42 $unidir/Decomposition.pl
43 $unidir/CompExcl.txt
44
45 # $unidir is $LIB/unicore or $LIB/unicode
46
47 COPYRIGHT AND LICENCE
48
49 SADAHIRO Tomoyuki, E<lt>SADAHIRO@cpan.orgE<gt>
50
51   http://homepage1.nifty.com/nomenclator/perl/
52
53   Copyright(C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved.
54
55   This program is free software; you can redistribute it and/or 
56   modify it under the same terms as Perl itself.
57