in reply to Re^4: XLS to CSV file with Text wrap
in thread XLS to CSV file with Text wrap
Create a small test program for the part that is failing
poj#!/usr/bin/perl use strict; use warnings; use Text::CSV_XS qw( csv ); print "$^V - $Text::CSV_XS::VERSION"; my $sheet = [['a','b','c,d'],[1,2,3]]; csv(in => $sheet, out => 'file.csv');
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: XLS to CSV file with Text wrap
by kshitij (Sexton) on Sep 01, 2018 at 14:33 UTC |