libregexp-assemble-perl 0.35-1 source package in Ubuntu

Changelog

libregexp-assemble-perl (0.35-1) unstable; urgency=low

  * New upstream release
  * Should close problems to run it with Perl 5.14 (Closes: #629285)
 -- Ubuntu Archive Auto-Sync <email address hidden>   Mon,  17 Oct 2011 11:10:32 +0000

Upload details

Uploaded by:
Ubuntu Archive Auto-Sync
Uploaded to:
Precise
Original maintainer:
Xavier Guimard
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Precise: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libregexp-assemble-perl_0.35.orig.tar.gz 85.0 KiB 0301cc6b2930091ebe8f3e6f75ced95c4a4c9ee16c4261998a08938363ce5dd7
libregexp-assemble-perl_0.35-1.debian.tar.gz 6.5 KiB 08d6e8bd2a186bf33e95386ed20c82c65f69da861fc3b0020bcb09aebed673a1
libregexp-assemble-perl_0.35-1.dsc 1.8 KiB 3c607ce3acf45ceb926bbc4c72fbedb00b3c44cd95787c8253df6117c41e94c3

Available diffs

View changes file

Binary packages built by this source

libregexp-assemble-perl: Assemble multiple Regular Expressions into a single RE

 Regexp::Assemble takes an arbitrary number of regular expressions
 and assembles them into a single regular expression (or RE) that
 matches all that the individual REs match.
 .
 As a result, instead of having a large list of expressions to loop
 over, a target string only needs to be tested against one expression.
 This is interesting when you have several thousand patterns to deal
 with. Serious effort is made to produce the smallest pattern possible.
 .
 It is also possible to track the original patterns, so that you can
 determine which, among the source patterns that form the assembled
 pattern, was the one that caused the match to occur.
 .
 You should realise that large numbers of alternations are processed
 in perl's regular expression engine in O(n) time, not O(1). If you
 are still having performance problems, you should look at using a
 trie. Note that Perl's own regular expression engine implements
 trie optimisations since perl 5.10. Regexp::Assemble will do the
 right thing when it knows it's running on a trie'd perl.
 (At least in some version after this one).