![]() |
![]()
| ![]() |
![]()
NAMESort::ArrayOfArrays - Perl extension for sorting an array of arrays SYNOPSISuse Sort::ArrayOfArrays; my $sort = Sort::ArrayOfArrays->new({ results => [ [1 .. 10], [10 .. 1], ], sort_column => -1, }); my $sorted = $sort->sort_it; # several examples are in the test scripts that came with the package in the t/ directory DESCRIPTIONSort::ArrayOfArrays was written to sort an arbitrary array of arrays, in powerful, different ways. PROPERTIESAny of the properties below can be set in your object. This can easily be done by passing a hash ref to new. header_row => set to 1 if you have a header row in $self->{results} sort_code => how to sort on each column, can be
the first digit possibilities are a - alphabetical sort n - numerical sort r - regex sort, where $1 is what gets sorted on, like /<!--stuff-->(.+?)<!--end of stuff-->/ use a qr if you need to use switches, like sort_code => { 0 => 'ra', }, sort_method_regex => { qr/<!--stuff-->(.+?)<!--end of stuff-->/i, } sort_method_regex is a hash ref contain where the key is the column and the value is the regex l - an instance of the regex type, where this regex qr@<a\s+href[^>]+?>(.+?)</a>@i attempts to match a link, if you wanted to match the href, you would have to use the appropriate regex the second digit possibilities are a - ascending d - decending defaults - the beginning default is 'aa', which is an alphabetical ascending sort, I keep this default if I find a value in the respective column that contains something that is not "a number", defined by this regex /[^0-9.\-+ ]/. If I find a value in the respective column that is only "a number", defined by this regex /^[0-9.\-+]+$/, I use 'na', which is a numerical ascending sort Note that the defaults are problematic, in that I have to look through values, performing regexes. I stop as soon as I can, which in my experience is usually after just a value or two, but if this is not acceptable, or if you would like to perform searches in a way contrary to the default, you need to set a value yourself dates - initially I started to write different sort for each date format, but found it much better to do something like <!--1009411647-->December 26, and then just do a 'aa'. The epoch time in the date will do a nice ascii sort, and not appear in any html. If this is not acceptable, you can always use a code_ref and sort however you like. You likely want to sprintf out to ten digits just so old nine digit stuff will ascii sort properly sort_method_regex => used in conjunction with sort_method of
type regex (see above) sort_column => a zero based, column delimited,
list of columns you would like to sort on,
EXPORT_OKsort_it AUTHOREarl Cahill <cpan@spack.net> THANKSThanks to Paul T Seamons <paul@seamons.com> for the idea of a nice, simple two letter code for sort definitions, 'aa', 'nd' and the like. It made it pretty easy to add the regex type. It was also Paul's idea to use <!--1234567890--> for time sorts, which saved oh, so many headaches.
|