
Text::Filter::Cooked - Cooked reader for input files

use Text::Filter::Cooked;
my $f = Text::Filter::Cooked->new
(input => 'myfile.dat',
comment => "#",
join_lines => "\\");
while ( my $line = $f->readline ) {
printf("%3d\t%s\n", $f->lineno, $line);
}

Text::Filter::Cooked is a generic input reader. It takes care of a number of things that are commonly used when reading data and configuration files.
Text::Filter::Cooked is based on Text::Filter, see Text::Filter.

The constructor is called new() and takes a hash with attributes as its parameter.
The following attributes are recognized and used by the constructor, all others are passed to the base class, Text::Filter.
If true, empty lines encountered in the input are ignored.
If true, leading whitespace encountered in the input is ignored.
If true, trailing whitespace encountered in the input is ignored.
If true, multiple adjacent whitespace are compressed to a single space.
This must be set to a string. Input lines that end with this string (not taking the final line ending into account) are joined with the next line read from the input.
This must be set to a string. Input lines that start with this string are ignored.
Assume the input file to have this encoding.
Setting input_encoding will enable automatic and transparant handling of different file encodings, see "INPUT ENCODING".

All attributes have set and get methods, e.g., set_comment and get_input_encoding.
Other methods: