libregexp-grammars-perl 1.041-1 source package in Ubuntu

Changelog

libregexp-grammars-perl (1.041-1) unstable; urgency=medium

  * Imported Upstream version 1.041

 -- Salvatore Bonaccorso <email address hidden>  Sun, 03 May 2015 17:26:56 +0200

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Wily: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libregexp-grammars-perl_1.041-1.dsc 2.2 KiB 019084e6637929b5f537d6322456d29cfa50dd3637f68bb420c556b8785f54f9
libregexp-grammars-perl_1.041.orig.tar.gz 251.2 KiB 0a6d93f492fe2b24fbbde15e268793be10eb49f1fdd3e524163e47b164210b8e
libregexp-grammars-perl_1.041-1.debian.tar.xz 3.4 KiB 7264e1ed1a9a70e3e7a01883b47760355b61f4032c6a090da7b5e05e9565cb9d

Available diffs

No changes file available.

Binary packages built by this source

libregexp-grammars-perl: Perl module to add grammatical parsing features to Perl 5.10 regexes

 Regexp::Grammars adds a small number of new regex constructs that can be used
 within Perl 5.10 patterns to implement complete recursive-descent parsing.
 .
 Perl 5.10 already supports recursive=descent matching, via the new
 (?<name>...) and (?&name) constructs. This technique makes it possible
 to use regexes to recognize complex, hierarchical--and even recursive--
 textual structures. The problem is that Perl 5.10 doesn't provide any
 support for extracting that hierarchical data into nested data
 structures. In other words, using Perl 5.10 you can match complex data,
 but not parse it into an internally useful form.
 .
 An additional problem when using Perl 5.10 regexes to match complex
 data formats is that you have to make sure you remember to insert whitespace-
 matching constructs (such as \s*) at every possible position where the
 data might contain ignorable whitespace. This reduces the readability
 of such patterns, and increases the chance of errors (typically caused
 by overlooking a location where whitespace might appear).
 .
 The Regexp::Grammars module solves both those problems.