in reply to sort array by value in it

This is a fairly common problem. The solution is to not use a string as a record, but to use a composite data type like an array or a hash as the record, sort that, and then construct your string from the record when its needed. The below is a version of this, where the string is actualyl part of the record. We sort the list of records, and then extract the strings from the resulting set.

@lines = split(/\n/,$space{ $host }); shift @lines; my @recs; foreach $disk_used (@lines) { $_ = $disk_used; if (/(\/\w+\/\w+)\s+\w+\s+\d+\s+\d+\s+(\d+)\s+(\d+)%/ ) { $free = 100-$3; push @recs,[$host,$1,$2,$free,"$host:$1 $2 $free%" +]; } } @out=map { $_->[-1] } sort { $b->[3] <=> $a->[3] } @recs;

HTH


---
demerphq

    First they ignore you, then they laugh at you, then they fight you, then you win.
    -- Gandhi


Replies are listed 'Best First'.
Re: Re: sort array by value in it
by Anonymous Monk on May 04, 2004 at 16:31 UTC
    your code gave me back
    host:volume available(MB) %free 149.153.130.23:/dev/hda3 10168 80% 149.153.130.23:/dev/hda2 84 90%
    it didnt give me back the values for the first address i went to..????
Re: Re: sort array by value in it
by Anonymous Monk on May 04, 2004 at 16:37 UTC

    doh!!!!!


    forgot to move the declaration of the @recs outside the loop...
    tanx for all your help twas greatly appreciated...