Help for this page

Select Code to Download


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