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

..03-May-2022-

lib/Regexp/H27-Jun-2021-10017

t/H27-Jun-2021-776753

ChangesH A D27-Jun-20213.4 KiB11884

Compare.xsH A D25-Oct-2020656 5136

MANIFESTH A D27-Jun-2021381 2019

META.jsonH A D27-Jun-2021905 4140

META.ymlH A D27-Jun-2021559 2322

Makefile.PLH A D27-Jun-2021877 2116

READMEH A D27-Jun-20211,007 3323

XPerlSpace.30H A D25-Oct-202093 1716

XPerlSpace.30aH A D25-Oct-202073 1312

XPosixAlnum.30H A D25-Oct-202011.3 KiB1,4271,426

XPosixAlnum.32H A D25-Oct-202011.6 KiB1,4591,458

XPosixAlpha.28H A D25-Oct-202011.6 KiB1,3171,316

XPosixDigit.22H A D25-Oct-2020631 9998

XPosixWord.22H A D25-Oct-20207.7 KiB1,1971,196

engine.cH A D27-Jun-2021176.5 KiB6,5225,192

engine.hH A D27-Jun-2021639 2812

ppport.hH A D25-Oct-2020115.4 KiB4,9551,829

README

1Regexp-Compare
2==============
3
4This module implements a function comparing regular expressions: it
5returns true if all strings matched by the first regexp are also
6matched by the second. It's meant to be used for optimization of
7blacklists implemented by regular expressions (like, for example,
8http://www.communitywiki.org/cw/BannedContent ).
9
10INSTALLATION
11
12To install this module type the following:
13
14   perl Makefile.PL
15   make
16   make test
17   make install
18
19DEPENDENCIES
20
21This is an XS module, whose compilation requires a C compiler. Because
22it uses internal Perl structures, it's sensitive to platform
23differences and may be broken by new Perl versions - running its
24testsuite for every new installation is highly recommended.
25
26COPYRIGHT AND LICENCE
27
28Copyright (C) 2006 - 2021 by Vaclav Barta
29
30This library is free software; you can redistribute it and/or modify
31it under the same terms as Perl itself, either Perl version 5.26.0 or,
32at your option, any later version of Perl 5 you may have available.
33