waytoperl has asked for the wisdom of the Perl Monks concerning the following question:
Hash obtained from excel file saved in CSV format. Need to obtain output based on hash keys and corresponding values. How to read contents of various CSV file with data stored in various sheets? Now, I'm able to read data from sheet1 and store in a hash.
Contents of CSV sheet1, stored in hash table.
$VAR1 = 'key_2'; $VAR2 = 'value_2'; $VAR3 = 'key_1'; $VAR4 = 'value_1';
Required output should be to print, contents of csv are value_1 and value_2 in a single print statement
Please help
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: keys and values
by LanX (Saint) on Sep 22, 2014 at 20:43 UTC | |
|
Re: keys and values
by shmem (Chancellor) on Sep 22, 2014 at 22:44 UTC | |
by Anonymous Monk on Sep 22, 2014 at 23:05 UTC | |
|
Re: keys and values
by Anonymous Monk on Sep 22, 2014 at 20:50 UTC | |
|
Re: keys and values
by jellisii2 (Hermit) on Sep 23, 2014 at 11:51 UTC |