RSS | Module Info | Add a review of Class-CSV
Class-CSV
(1.03)
Contrary to the other review, it is possible to pass options down to Text::CSV_XS, you have to pass a hashref into the constructor:
my $csv = Class::CSV->new(
fields => [qw/field1 field2 field3 etc/],
line_separator => "\n",
csv_xs_options => {
binary => 1,
}
);
There are other options available, just have a look at the source.
T
Toby Cole - 2007-10-16T04:29:22 (permalink)
4 out of 4 found this review helpful.
Was this review helpful to you?
Yes
No
1 hidden unhelpful review

