Acme-InputRecordSeparatorIsRegexp

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

Acme-InputRecordSeparatorIsRegexp

Use a regular expression as an input record separator.

In the description of the input record separator variable $/,
perlvar famously notes:

    Remember: the value of $/ is a string, not a regex. awk has to
    be better for something. :-)

This module attempts to get around that limitation, providing
a mechanism (using tied filehandles) to get the readline function
(and readline operator <...>) to define "lines" with respect to
a regular expression.

A common use case is to read a text file that you don't know
whether is uses Unix (\n), Windows/DOS (\r\n), or Mac (\r)
style line-endings, or even if it might contain all three.

Other use cases are files that contain multiple types of records
where a different sequence of characters is used to denote the
end of different types of records.


INSTALLATION

To install this module, run the following commands:

	perl Makefile.PL
	make
	make test
	make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

    perldoc Acme::InputRecordSeparatorIsRegexp

You can also look for information at:

    RT, CPAN's request tracker (report bugs here)
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Acme-InputRecordSeparatorIsRegexp

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/Acme-InputRecordSeparatorIsRegexp

    CPAN Ratings
        http://cpanratings.perl.org/d/Acme-InputRecordSeparatorIsRegexp

    Search CPAN
        http://search.cpan.org/dist/Acme-InputRecordSeparatorIsRegexp/


LICENSE AND COPYRIGHT

Copyright (C) 2013-2018 Marty O'Brien

This program is free software; you can redistribute it and/or modify it
under the terms of the the Artistic License (2.0). You may obtain a
copy of the full license at:

L<http://www.perlfoundation.org/artistic_license_2_0>

Any use, modification, and distribution of the Standard or Modified
Versions is governed by this Artistic License. By using, modifying or
distributing the Package, you accept this license. Do not use, modify,
or distribute the Package, if you do not accept this license.

If your Modified Version has been derived from a Modified Version made
by someone other than you, you are nevertheless required to ensure that
your Modified Version complies with the requirements of this license.

This license does not grant you the right to use any trademark, service
mark, tradename, or logo of the Copyright Holder.

This license includes the non-exclusive, worldwide, free-of-charge



( run in 0.858 second using v1.01-cache-2.11-cpan-39bf76dae61 )