NAME
Text::CSV_XS::TSV - Set Text::CSV_XS default options to parse TSV
VERSION
This document describes version 0.003 of Text::CSV_XS::TSV (from Perl distribution Text-CSV_XS-TSV), released on 2019-12-12.
SYNOPSIS
Use like you would use Text::CSV_XS with the object interface:
use Text::CSV_XS::TSV;
my $csv = Text::CSV_XS::TSV->new({binary=>1});
# ...
DESCRIPTION
This class is a simple subclass of Text::CSV_XS to set the default of these options (if unspecified), suitable for parsing TSV (tab-separated values) files:
sep_char
To
"\t"
.quote_char
To
undef
.escape_char
To
undef
.
HOMEPAGE
Please visit the project's homepage at https://metacpan.org/release/Text-CSV_XS-TSV.
SOURCE
Source repository is at https://github.com/perlancar/perl-Text-CSV_XS-TSV.
BUGS
Please report any bugs or feature requests on the bugtracker website https://rt.cpan.org/Public/Dist/Display.html?Name=Text-CSV_XS-TSV
When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature.
SEE ALSO
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2019 by perlancar@cpan.org.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.