diff options
Diffstat (limited to 'ext/Unicode/Normalize/README')
-rw-r--r-- | ext/Unicode/Normalize/README | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/ext/Unicode/Normalize/README b/ext/Unicode/Normalize/README new file mode 100644 index 0000000000..3f0c4240fe --- /dev/null +++ b/ext/Unicode/Normalize/README @@ -0,0 +1,66 @@ +Unicode/Normalize version 0.10 +=================================== + +Unicode::Normalize - normalized forms of Unicode text + +SYNOPSIS + + use Unicode::Normalize; + + $string_NFD = NFD($string); # Normalization Form D + $string_NFC = NFC($string); # Normalization Form C + $string_NFKD = NFKD($string); # Normalization Form KD + $string_NFKC = NFKC($string); # Normalization Form KC + + or + + use Unicode::Normalize 'normalize'; + + $string_NFD = normalize('D', $string); # Normalization Form D + $string_NFC = normalize('C', $string); # Normalization Form C + $string_NFKD = normalize('KD', $string); # Normalization Form KD + $string_NFKC = normalize('KC', $string); # Normalization Form KC + +INSTALLATION + +Perl 5.006 or later + +To install this module type the following: + + perl Makefile.PL + make + make test + make install + +If you have a C compiler and want to use the XS version, +type the following: + + perl Makefile.PL xs + make + make test + make install + +DEPENDENCIES + +This module requires these other modules and libraries: + +Carp +Exporter +File::Copy +File::Spec +Lingua::KO::Hangul::Util 0.06 +unicore/CombiningClass.pl or unicode/CombiningClass.pl +unicore/Decomposition.pl or unicode/Decomposition.pl +unicore/CompExcl.txt or unicode/CompExcl.txt + +COPYRIGHT AND LICENCE + +SADAHIRO Tomoyuki, E<lt>SADAHIRO@cpan.orgE<gt> + + http://homepage1.nifty.com/nomenclator/perl/ + + Copyright(C) 2001, SADAHIRO Tomoyuki. Japan. All rights reserved. + + This program is free software; you can redistribute it and/or + modify it under the same terms as Perl itself. + |