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

..03-May-2022-

Multibyte/H06-Dec-2015-1,442632

longlong/H06-Dec-2015-9475

t/H06-Dec-2015-2,5472,111

ChangesH A D06-Dec-20152.9 KiB8465

MANIFESTH A D06-Dec-2015678 4948

META.jsonH A D06-Dec-2015898 4039

META.ymlH A D06-Dec-2015528 2221

Makefile.PLH A D06-Dec-2015241 108

Multibyte.pmH A D06-Dec-201527.1 KiB1,102510

READMEH A D06-Dec-20151.3 KiB5435

README

1String::Multibyte.pm version 1.12
2================
3
4String::Multibyte - locale-independent manipulation
5of multibyte character strings
6
7SYNOPSIS
8
9  use String::Multibyte
10  $sjis = String::Multibyte->new('ShiftJIS');
11  $sjis_length = $sjis->length($sjis_string);
12
13DESCRIPTION
14
15This module provides some functions which emulate
16the corresponding CORE:: functions
17to manipulate multiple-byte character strings.
18
19This module uses the object-oriented syntax to tell methods
20in which charset the specified strings should be handled.
21
22PREREQUISITES
23
24 Perl 5.003 or later
25(Perl 5.005 or later Recommended)
26
27* The following modules taking advantage of the Unicode Support
28(see <perlunicode>) are required Perl 5.8.0 or later.
29
30    String::Multibyte::Grapheme
31    String::Multibyte::Unicode
32
33INSTALLATION
34
35To install this module type the following:
36
37   perl Makefile.PL
38   make
39   make test
40   make install
41
42Note: t/long.t does stress tests to cope with long strings.
43     If it takes long long time on your machine,
44     try again after removing it.
45
46COPYRIGHT AND LICENSE
47
48SADAHIRO Tomoyuki <SADAHIRO@cpan.org>
49
50Copyright(C) 2001-2015, SADAHIRO Tomoyuki. Japan. All rights reserved.
51
52This module is free software; you can redistribute it and/or
53modify it under the same terms as Perl itself.
54