in reply to Re: Array of Arrays with Variable Names
in thread Array of Arrays with Variable Names
There are a few rules I have to follow here: 1. I can not modify the format of the data file - it is not static, nor do I 'own' it where I can change the way it's generated. 2. The arrays can not be in the script itself . I guess the whole question boils down to this, how can I have the following:@array1=( 'entry1', 'entry2', ... ); @array2=( 'entry1', 'entry2, ... ) ...
..interpret the following:@combined = ( $opt_f );
As a list of arrays which are then combined, and not simply treat them as regular entries, strings "@array1", "@array2"?$opt_f = '@array1,@array2'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Array of Arrays with Variable Names
by mreece (Friar) on Aug 25, 2006 at 17:39 UTC | |
by JWM (Initiate) on Aug 25, 2006 at 18:16 UTC | |
by mreece (Friar) on Aug 25, 2006 at 18:35 UTC | |
by Not_a_Number (Prior) on Aug 25, 2006 at 18:05 UTC |