Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Can't figure out how to print text and array values at same time
Here's code:
$csv->print ($fh1, [$ifile, @cols, @matches ]);
Here's code I tried
$csv->print ($fh1, [$ifile, "*".@cols, @matches ]);I tried single quotes, double quotes and print join with no luck
I must be missing something obvious!
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: how to print text + array values at same time
by kcott (Archbishop) on Feb 26, 2016 at 07:02 UTC | |
|
Re: how to print text + array values at same time
by stevieb (Canon) on Feb 26, 2016 at 01:02 UTC | |
|
Re: how to print text + array values at same time
by Anonymous Monk on Feb 26, 2016 at 00:59 UTC | |
|
Re: how to print text + array values at same time
by FreeBeerReekingMonk (Deacon) on Feb 26, 2016 at 22:23 UTC |