in reply to Re: Creating CSV file
in thread Creating CSV file
OK I`ll try:
During processing in previous part of a program I received following three arrays:
@ports=qw(portname portID port802); @val1= qw(ON ON OFF); @val2=qw(EX EX NEX);
Output i received:
portname;portID;port802;What i need is to print in CSV something like this:
ports;portname;ON;EX; ports;portID;ON;EX; ports;port802;OFF;NEX;
Hope this will clarify a little bit, just don`t know how to get this using Text::CSV module.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Creating CSV file
by GrandFather (Saint) on Jul 31, 2010 at 23:00 UTC | |
by Tux (Canon) on Aug 01, 2010 at 08:13 UTC | |
by GrandFather (Saint) on Aug 01, 2010 at 12:15 UTC | |
by Tux (Canon) on Aug 01, 2010 at 13:05 UTC | |
|
Re^3: Creating CSV file
by graff (Chancellor) on Jul 31, 2010 at 22:56 UTC |