in reply to Re: multiple array processing
in thread multiple array processing
Thanks for the post.
With regards to 2. each array has different lengths, example from your post
[ ["a" .. "d"], [1 .. 9], ["p", "z", "e", "t", "i", "u"], ["foo", "bar", "baz"], ]
I would want that sorted from min to max number of elements
[ red ["foo", "bar", "baz"], ["a" .. "d"], [1 .. 9], ["p", "z", "e", "t", "i", "u"], ]
for 3., yes I want to sort the array_of_arrays by the lexical subarray variable names. maybe this needs to be shoved into a string, parsed then ordered??
a random sort of the arrays might be
[ [1 .. 9], ["foo", "bar", "baz"], ["p", "z", "e", "t", "i", "u"], ["a" .. "d"], red ]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: multiple array processing
by AnomalousMonk (Archbishop) on Sep 03, 2014 at 05:52 UTC | |
by f77coder (Beadle) on Sep 06, 2014 at 23:28 UTC | |
|
Re^3: multiple array processing
by NetWallah (Canon) on Sep 03, 2014 at 05:16 UTC | |
by f77coder (Beadle) on Sep 06, 2014 at 23:25 UTC |