logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Text::RecordParser::Tab - read tab-delimited files

Author

       Ken Youens-Clark <kclark@cpan.org>

Description

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

   new
       Call "new" as normal but without worrying about "field_separator" or "fs."

       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",
         );

Name

       Text::RecordParser::Tab - read tab-delimited files

Synopsis

         use Text::RecordParser::Tab;

See Also