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

..03-May-2022-

ParseExcel/H06-Jun-2017-5,4142,400

ParseExcel.pmH A D25-Oct-2016112.6 KiB3,5561,836

ParseXLSX.pmH A D25-Oct-201627.6 KiB938607

README-ParseExcelH A D25-Oct-20162.3 KiB8155

README-XLSH A D25-Oct-2016604 3017

README-ParseExcel

1NAME
2    Spreadsheet::ParseExcel - Extract information from Excel file.
3
4DESCRIPTION
5    This module allows you to extract information from Excel file.
6
7    This module can handle files in Excel95, 97 and 2000 format.
8
9    The module will work on the majority of Windows, UNIX and
10    Macintosh platforms.
11
12REQUIREMENT
13    This module requires these modules:
14        OLE::Storage_Lite
15        Jcode.pm      (if you are using FmtJapan, or FmtJapan2)
16        Unicode::Map  (if you are using FmtJapan2 or FmtUnicode)
17        IO::Scalar    (if PERLIO is not available)
18        Spreadsheet::WriteExcel (to use Spreadsheet::ParseExcel::SaveParser)
19
20INSTALLATION
21    The module can be installed using the standard Perl procedure:
22
23        perl Build.PL
24        ./Build
25        ./Build test
26        ./Bbuild install
27
28      or
29
30        perl Makefile.PL
31        make
32        make test
33        make install    # You may need to be root
34        make clean      # or make realclean
35
36      or using CPAN.pm or CPANPLUS.pm
37
38        cpan Spreadsheet::ParseExcel
39
40    Windows users without a working "make" can get nmake from:
41        ftp://ftp.microsoft.com/Softlib/MSLFILES/nmake15.exe
42
43For FmtJapan2
44  If you use FmtJapan2, you must do following actions:
45
46  (1) Copy "CP932Excel.map" included with this distribution to an
47      applicatable directry.
48
49  (2) To add "CP932Excel" as map name, append following lines to
50      REGISTRY in the Unicode::Map hierarchy
51      (changing map directy to applicatable directry):
52
53name:    CP932Excel
54srcURL:  $SrcUnicode/VENDORS/MICSFT/WINDOWS/CP932.TXT
55src:     $DestUnicode/VENDORS/MICSFT/WINDOWS/CP932.TXT
56map:     (which you copied directry)/CP932Excel.map
57# Don't remove this line
58
59
60AUTHOR
61
62    Current maintainer 0.40+: John McNamara jmcnamara@cpan.org
63
64    Maintainer 0.27-0.33: Gabor Szabo szabgab@cpan.org
65
66    Original author: Kawai Takanori (Hippo2000) kwitknr@cpan.org
67
68
69SUPPORT
70    Before you report problems, please check the "KNOWN PROBLEMS" section
71    in the manual page for Spreadsheet::ParseExcel.
72
73    There is a Google group for discussing and asking questions about
74    Spreadsheet::ParseExcel.
75    http://groups-beta.google.com/group/spreadsheet-parseexcel/
76
77    Bugs can be reported via rt.cpan.org. See the following for instructions:
78    http://rt.cpan.org/Public/Dist/Display.html?Name=Spreadsheet-ParseExcel
79
80    Test cases are always welcome.
81

README-XLS

1Spreadsheet-XLSC version 0.01
2=============================
3
4Spreadsheet::XLSX - Perl extension for reading MS Excel 2007 files;
5
6INSTALLATION
7
8To install this module type the following:
9
10   perl Makefile.PL
11   make
12   make test
13   make install
14
15DEPENDENCIES
16
17This module requires these other modules and libraries:
18
19  Archive::Zip
20
21COPYRIGHT AND LICENCE
22
23Copyright (C) 2008 by Dmitry Ovsyanko
24
25This library is free software; you can redistribute it and/or modify
26it under the same terms as Perl itself, either Perl version 5.8.8 or,
27at your option, any later version of Perl 5 you may have available.
28
29
30