in reply to criteria based array sorting

TMTOWTDI

my @sorted = (( sort grep { $_ eq lcfirst } @unsorted ), ( sort grep { $_ eq ucfirst } @unsorted ));

dave