Avatar of Michał Pijus
Michał Pijus

asked on 

How to create hash of arrays in perl from excel files ?

The format of input file is ( two columns in excel):

A1;A2
A1:B3
A1:C3
A2:C3
A2:D1

I'd like to get (make) something like that:

A1=>[A2,B3,C3];
A2=>[C3,D1];

No Idea ho to do it ;(
Perl

Avatar of undefined
Last Comment
Michał Pijus

8/22/2022 - Mon