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

Changelog

libregexp-grammars-perl (1.028-1) unstable; urgency=low


  * Imported Upstream version 1.028

 -- Salvatore Bonaccorso <email address hidden>  Sat, 11 May 2013 07:40:56 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Saucy: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libregexp-grammars-perl_1.028-1.dsc 2.1 KiB 81fbb74a0e2e5df1df241fec20d3738b217211f0df067fb6e233225e1fb8a743
libregexp-grammars-perl_1.028.orig.tar.gz 246.4 KiB 89a0acdad1da1a27cd12afe1656c4f4212c1f11ef19eb56b44a74a1c038c695f
libregexp-grammars-perl_1.028-1.debian.tar.gz 2.8 KiB 91370bcdd381b439d32c4b0759d56d19f1da23c8ecebbc2ecbb5a9b0ec272e7b

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.