The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Text::CSV::Base - comma-separated values manipulation routines

SYNOPSIS

 use Text::CSV::Base;

 $csv = Text::CSV::Base->new();        # create a new object

DESCRIPTION

The same functionality as Text::CSV but set always_quote = 1>.

This module exists to support Text::CSV::Unicode, which assumes always_quote = 1> in its functionality.

FUNCTIONS

new
 $csv = Text::CSV::Base->new();

This function may be called as a class or an object method. It returns a reference to a newly created Text::CSV::Base object.

AUTHOR

Robin M Barker <rmbarker@cpan.org>

SEE ALSO

perl(1) Text::CSV