my $max = 0; my $min = 9999; foreach my $char (split //,$content) { my $ord = ord($char); $max = $ord if $ord > $max; $min = $ord if $ord < $min; }