in reply to Re^3: Excel To Tab Delimited using Spreadsheet::ParseExcel
in thread Excel To Tab Delimited using Spreadsheet::ParseExcel
, I understand, strips off spaces from beginning and end. The third line I removed$value =~ s/^\s+//; $value =~ s/\s+$//;
, what does that do? I wanted to ensure I did not remove a line that 'should' be in there.$value = " " if $value ne "0" && !$value;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: Excel To Tab Delimited using Spreadsheet::ParseExcel
by Anonymous Monk on Feb 28, 2015 at 14:33 UTC |