1Text::RecordParser::TabU(s3e)r Contributed Perl DocumentaTteixotn::RecordParser::Tab(3)
2
3
4
6 Text::RecordParser::Tab - read tab-delimited files
7
9 use Text::RecordParser::Tab;
10
12 This module is a shortcut for getting a tab-delimited parser.
13
14 new
15
16 Call "new" as normal but without worrying about "field_separator" or
17 "fs."
18
19 Because this:
20
21 my $p = Text::RecordParser::Tab->new($file);
22
23 Is easier to type than this
24
25 my $p = Text::RecordParser->new(
26 filename => $file,
27 field_separator => "\t",
28 );
29
31 Ken Youens-Clark <kclark@cpan.org>
32
34 Copyright (C) 2006 Ken Youens-Clark. All rights reserved.
35
36 This program is free software; you can redistribute it and/or modify it
37 under the terms of the GNU General Public License as published by the
38 Free Software Foundation; version 2.
39
40 This program is distributed in the hope that it will be useful, but
41 WITHOUT ANY WARRANTY; without even the implied warranty of MER‐
42 CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
43 Public License for more details.
44
45
46
47perl v5.8.8 2007-05-17 Text::RecordParser::Tab(3)