in reply to Re: Array of Arrays on Monday.
in thread Array of Arrays on Monday.
the array should look as follows. For each of 250K lines I should push the application name, and then the IP address to the proper application name. Only keeping the unique changes. One application may end up with thousands of members. and there are over 4000 unique application names. I need to create a CSV file of application names by member and the member column will use the ";" as a separator not to interfere with the comma.
A = ( application1 => [ "10.10.10.1", "10.10.10.2" ], application2 => [ "10.10.10.3", "10.10.10.4", "10.10.10.5" ], application3 => [ "10.10.10.1", "10.10.10.3", "10.10.10.6" ], );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Array of Arrays on Monday.
by choroba (Cardinal) on Jan 25, 2016 at 15:56 UTC | |
by vlturner (Sexton) on Jan 25, 2016 at 16:52 UTC | |
by AnomalousMonk (Archbishop) on Jan 25, 2016 at 20:01 UTC | |
|
Re^3: Array of Arrays on Monday.
by poj (Abbot) on Jan 25, 2016 at 17:27 UTC | |
by vlturner (Sexton) on Jan 25, 2016 at 19:58 UTC | |
by poj (Abbot) on Jan 25, 2016 at 20:17 UTC | |
by vlturner (Sexton) on Jan 26, 2016 at 14:03 UTC | |
by poj (Abbot) on Jan 26, 2016 at 14:14 UTC |