SYNOPSIS

  use Text::RecordParser::Tab;

DESCRIPTION

This module is a shortcut for getting a tab-delimited parser.

new

Call \*(L"new\*(R" as normal but without worrying about \*(L"field_separator\*(R" or \*(L"fs.\*(R"

Because this:

my $p = Text::RecordParser::Tab->new($file);

Is easier to type than this

my $p = Text::RecordParser->new( filename => $file, field_separator => "\t", );

AUTHOR

Ken Youens-Clark <[email protected]>

LICENSE AND COPYRIGHT

Copyright (C) 2006-10 Ken Youens-Clark. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the terms of the \s-1GNU\s0 General Public License as published by the Free Software Foundation; version 2.

This program is distributed in the hope that it will be useful, but \s-1WITHOUT\s0 \s-1ANY\s0 \s-1WARRANTY\s0; without even the implied warranty of \s-1MERCHANTABILITY\s0 or \s-1FITNESS\s0 \s-1FOR\s0 A \s-1PARTICULAR\s0 \s-1PURPOSE\s0. See the \s-1GNU\s0 General Public License for more details.