Help for this page

Select Code to Download


  1. or download this
    $file_name =~ /^[A-Z]/i;
    push @{$arrays->{$1}}, $infoline;
    
  2. or download this
    for $key (keys %$arrays){
      for $element (@{$arrays->{$key}}){
        print $element;
      }
    }