NAME Filename::Ebook - Check whether filename indicates being an e-book VERSION This document describes version 0.001 of Filename::Ebook (from Perl distribution Filename-Ebook), released on 2020-05-30. SYNOPSIS use Filename::Ebook qw(check_ebook_filename); my $res = check_ebook_filename(filename => "how not to die.pdf"); if ($res) { print "Filename indicates an ebook\n", } else { print "Filename does not indicate an ebook\n"; } DESCRIPTION FUNCTIONS check_ebook_filename Usage: check_ebook_filename(%args) -> any Check whether filename indicates being an e-book. This function is not exported by default, but exportable. Arguments ('*' denotes required arguments): * ci => *bool* (default: 1) Whether to match case-insensitively. * filename* => *str* Return value: (any) HOMEPAGE Please visit the project's homepage at . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. SEE ALSO Other "Filename::*", e.g. Filename::Image or Filename::Video AUTHOR perlancar COPYRIGHT AND LICENSE This software is copyright (c) 2020 by perlancar@cpan.org. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.