in reply to Re: How to create array from file
in thread How to create array from file
Assume as
I have two variable and its value changes twice like
$var1 = 1; # next value 2 $var2 = 'Hello'; # next value 'There'
Now I wanted it in a array ref as
How I able to do that? Please tell me.$VAR = [ [1,\'Hello\'], [2,\'There\'] ]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to create array from file
by Corion (Patriarch) on Jan 20, 2017 at 13:11 UTC | |
|
Re^3: How to create array from file
by choroba (Cardinal) on Jan 20, 2017 at 13:35 UTC | |
|
Re^3: How to create array from file
by AnomalousMonk (Archbishop) on Jan 20, 2017 at 20:02 UTC |