in reply to Re: I need to sort out some values and get only the highest generated by my perl script
in thread I need to sort out some values and get only the highest generated by my perl script

Or perhaps just:

my %count; map { ++$count{$_} } ( $site =~ /([A-WY._])/g );

Minor note: there is no X or Z.

Regards,

PN5

  • Comment on Re^2: I need to sort out some values and get only the highest generated by my perl script
  • Download Code