in reply to Sorting numerials first and then numerials with alpha characters last

use Sort::Key::Multi qw( iiskeysort ); my @sorted = iiskeysort { /id=(\d+)(\w*)/ or die; $2 ne "", $1, $2 } @inputs;
  • Comment on Re: Sorting numerials first and then numerials with alpha characters last
  • Download Code