如何阅读" .opf"和" .ncx" Perl中的文件

时间:2014-05-27 09:46:31

标签: regex perl cpan

我想阅读" .opf"和" .ncx"使用Perl的文件

请提出任何想法

由于

VIMAL

1 个答案:

答案 0 :(得分:0)

您应该使用CPAN提供的EPUB parser模块。

用法

 use EPUB::Parser;
 my $ep = EPUB::Parser->new->load_file({ file_path  => 'sample.epub' });
 my $opf = $ep->opf;