in reply to Perl to Add newline at the end of each row of comma seperated strings in an array ?
my $xlsx_INFILE =("C:\\Temp\\Test.xlsx"),, 1; #Set-up Files
What is this statement intended to do? In particular, please be aware that (update: in Perl,) the ,, 1 tail on the statement can have no effect.
c:\@Work\Perl\monks>perl -wMstrict -le "my $xlsx_INFILE =(\"C:\\Temp\\Test.xlsx\"),, 1; print qq{'$xlsx_INFILE'}; " 'C:\Temp\Test.xlsx'
Give a man a fish: <%-{-{-{-<
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl to Add newline at the end of each row of comma seperated strings in an array ?
by john.tm (Scribe) on Sep 11, 2015 at 20:22 UTC | |
by poj (Abbot) on Sep 11, 2015 at 20:46 UTC |