- or download this
my @details = split /Message Type/, $data;
- or download this
my $last_item = $array[$#array];
- or download this
my $item_before_last = $array[ $#array - 1 ];
- or download this
@array = reverse @array; # ...and the last shall be first :)
my $last_item = $array[0];