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 . SOURCE Source repository is at . BUGS Please report any bugs or feature requests on the bugtracker website 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 Text::CSV_XS AUTHOR perlancar 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.