Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

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