1Text::RecordParser::TabU(s3e)r Contributed Perl DocumentaTteixotn::RecordParser::Tab(3)
2
3
4

NAME

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

SYNOPSIS

9         use Text::RecordParser::Tab;
10

DESCRIPTION

12       This module is a shortcut for getting a tab-delimited parser.
13
14   new
15       Call "new" as normal but without worrying about "field_separator" or
16       "fs."
17
18       Because this:
19
20         my $p = Text::RecordParser::Tab->new($file);
21
22       Is easier to type than this
23
24         my $p = Text::RecordParser->new(
25             filename        => $file,
26             field_separator => "\t",
27         );
28

AUTHOR

30       Ken Youens-Clark <kclark@cpan.org>
31
33       Copyright (C) 2006-10 Ken Youens-Clark.  All rights reserved.
34
35       This program is free software; you can redistribute it and/or modify it
36       under the terms of the GNU General Public License as published by the
37       Free Software Foundation; version 2.
38
39       This program is distributed in the hope that it will be useful, but
40       WITHOUT ANY WARRANTY; without even the implied warranty of
41       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
42       General Public License for more details.
43
44
45
46perl v5.30.0                      2019-07-26        Text::RecordParser::Tab(3)
Impressum