Hi,

I'm trying to sort and print the numerical and text values inside hashes of
hashes. It's almost functioning correctly. 

<code>

  elsif ($User_Choice =~ /^T/i) {
    for $File (reverse (sort {$All_Scores{$a}{Trimmed} cmp
$All_Scores{$b}{Trimmed}} keys %All_Scores)) {
      InsertSortedEntries ($File, $All_Scores);   
    } # end for
  InsertLine ($Max_File_Name_Size, $Width);
  print "The results are sorted by: Trimmed\n"; 
  } # end elsif

</code>

Trimmed contains: No, 11, 10, 01 and 00

<results>

no
11
10
01
00

</results>

That's not exactly what I want. I want to put No at the buttom of that list,
not at the top. Does somebody has a clue how I can solve this problem?

Thanks in advance,

Remko Lems

Email: mailto:[EMAIL PROTECTED]

Reply via email to