1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
Source: libdata-record-perl
Section: perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
libmodule-build-perl
Build-Depends-Indep: perl,
libsub-uplevel-perl <!nocheck>,
libtest-exception-perl <!nocheck>,
libtest-simple-perl <!nocheck>,
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Jonas Smedegaard <dr@jones.dk>
Standards-Version: 4.7.2
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdata-record-perl.git
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdata-record-perl
Homepage: https://metacpan.org/release/Data-Record
Testsuite: autopkgtest-pkg-perl
Package: libdata-record-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libsub-uplevel-perl
Recommends: ${cdbs:Recommends}
Suggests: ${cdbs:Suggests}
Description: "split" on steroids
Sometimes data need to be split into records and a simple split on the
input record separator (C<$/>) or some other value fails because the
values we're splitting on may allowed in other parts of the data.
Perhaps they're quoted. Perhaps they're embedded in other data which
should not be split up.
.
Data::Record allows you to specify what you wish to split the data on,
but also specify an "unless" regular expression. If the text in
question matches the "unless" regex, it will not be split there. This
allows one to do things like split on newlines unless newlines are
embedded in quotes.
Multi-Arch: foreign
|