Regexp::Pattern::Filename::Video - Video filename
This document describes version 0.002 of Regexp::Pattern::Filename::Video (from Perl distribution Regexp-Pattern-Filename-Video), released on 2020-05-31.
use Regexp::Pattern; # exports re() my $re = re("Filename::Video::filename_video");
This is a Regexp::Pattern wrapper for Filename::Video.
filename_video
Video filename.
Examples:
No extension.
"foo" =~ re("Filename::Video::filename_video"); # DOESN'T MATCH
Not an extension.
"mp4" =~ re("Filename::Video::filename_video"); # DOESN'T MATCH
Example #3.
"foo.mp4" =~ re("Filename::Video::filename_video"); # matches
Case insensitive.
"foo bar.MKV" =~ re("Filename::Video::filename_video"); # matches
Regex is anchored.
"foo.MKV is the file" =~ re("Filename::Video::filename_video"); # DOESN'T MATCH
Example #6.
"foo.mp3" =~ re("Filename::Video::filename_video"); # DOESN'T MATCH
Please visit the project's homepage at https://metacpan.org/release/Regexp-Pattern-Filename-Video.
Source repository is at https://github.com/perlancar/perl-Regexp-Pattern-Filename-Video.
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Regexp-Pattern-Filename-Video
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.
Filename::Video
Regexp::Pattern
Some utilities related to Regexp::Pattern: App::RegexpPatternUtils, rpgrep from App::rpgrep.
perlancar <perlancar@cpan.org>
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.
To install Regexp::Pattern::Filename::Video, copy and paste the appropriate command in to your terminal.
cpanm
cpanm Regexp::Pattern::Filename::Video
CPAN shell
perl -MCPAN -e shell install Regexp::Pattern::Filename::Video
For more information on module installation, please visit the detailed CPAN module installation guide.