in reply to Finding the Shortest Element in an Array
my @array = qw(hello superduper hi); my $shortest = $array[0]; for( @array ) { $shortest = $_ if length $_ < length $shortest; } [download]